diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-06 20:59:46 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-06 20:59:46 +0800 |
commit | 60f192d4935a36c2d56e059cce6a9dab451eeccb (patch) | |
tree | 5ecc264ce6c8f7363f6f48a590ce5f0ad3065da5 /http_handle_group_index.go | |
parent | group/index: Add create repo form (diff) | |
download | forge-60f192d4935a36c2d56e059cce6a9dab451eeccb.tar.gz forge-60f192d4935a36c2d56e059cce6a9dab451eeccb.tar.zst forge-60f192d4935a36c2d56e059cce6a9dab451eeccb.zip |
*: Remove unnecessary debug printf
Diffstat (limited to '')
-rw-r--r-- | http_handle_group_index.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/http_handle_group_index.go b/http_handle_group_index.go index e235006..97ffee5 100644 --- a/http_handle_group_index.go +++ b/http_handle_group_index.go @@ -4,7 +4,6 @@ package main import ( - "fmt" "net/http" "github.com/jackc/pgx/v5" @@ -131,7 +130,5 @@ func handle_group_index(w http.ResponseWriter, r *http.Request, params map[strin params["description"] = group_description params["direct_access"] = direct_access - fmt.Println(group_path) - render_template(w, "group", params) } |