diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-22 13:17:55 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-22 13:32:35 +0800 |
commit | 7a6f71ac73b41a38e9982bea3d46a87c327bd77a (patch) | |
tree | 92d5b637f57080af40c2f42834282df58a4e21a3 /http_handle_repo_info.go | |
parent | fedauth: Use NewRequestWithContext (diff) | |
download | forge-7a6f71ac73b41a38e9982bea3d46a87c327bd77a.tar.gz forge-7a6f71ac73b41a38e9982bea3d46a87c327bd77a.tar.zst forge-7a6f71ac73b41a38e9982bea3d46a87c327bd77a.zip |
Initial linting
Diffstat (limited to 'http_handle_repo_info.go')
-rw-r--r-- | http_handle_repo_info.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/http_handle_repo_info.go b/http_handle_repo_info.go index abb971d..389936c 100644 --- a/http_handle_repo_info.go +++ b/http_handle_repo_info.go @@ -90,13 +90,13 @@ func httpHandleRepoInfo(w http.ResponseWriter, r *http.Request, params map[strin return nil } -// Taken from https://github.com/icyphox/legit, MIT license +// Taken from https://github.com/icyphox/legit, MIT license. func packLine(w io.Writer, s string) error { _, err := fmt.Fprintf(w, "%04x%s", len(s)+4, s) return err } -// Taken from https://github.com/icyphox/legit, MIT license +// Taken from https://github.com/icyphox/legit, MIT license. func packFlush(w io.Writer) error { _, err := fmt.Fprint(w, "0000") return err |