diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-18 20:10:45 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-18 20:11:03 +0800 |
commit | 8402acf959f8d8c8faad9c8d9e9f28c68b486c74 (patch) | |
tree | 1989e1a3b07974f5a9663df30443dd2dd02108c9 /git_hooks_handle.go | |
parent | git_hooks_client -> hookc (diff) | |
download | forge-8402acf959f8d8c8faad9c8d9e9f28c68b486c74.tar.gz forge-8402acf959f8d8c8faad9c8d9e9f28c68b486c74.tar.zst forge-8402acf959f8d8c8faad9c8d9e9f28c68b486c74.zip |
Remove underscores from Go code, pt 1
Diffstat (limited to '')
-rw-r--r-- | git_hooks_handle.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git_hooks_handle.go b/git_hooks_handle.go index 178b3c7..e23b7ce 100644 --- a/git_hooks_handle.go +++ b/git_hooks_handle.go @@ -319,7 +319,7 @@ func hooks_handle_connection(conn net.Conn) { _, _ = conn.Write([]byte{hook_return_value}) } -func serve_git_hooks(listener net.Listener) error { +func serveGitHooks(listener net.Listener) error { for { conn, err := listener.Accept() if err != nil { |