diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-19 01:20:19 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-19 01:20:19 +0800 |
commit | 1f27db389c23c36a5e2b8365768ed218a78e6af1 (patch) | |
tree | d4021bafb4cf5a5b092b8cb06ae389ce5b36793f /http_handle_repo_contrib_num.go | |
parent | contrib/index: Remove erroneous go-git/v5 (diff) | |
download | forge-1f27db389c23c36a5e2b8365768ed218a78e6af1.tar.gz forge-1f27db389c23c36a5e2b8365768ed218a78e6af1.tar.zst forge-1f27db389c23c36a5e2b8365768ed218a78e6af1.zip |
http: Add blank contrib/%d template
Diffstat (limited to 'http_handle_repo_contrib_num.go')
-rw-r--r-- | http_handle_repo_contrib_num.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/http_handle_repo_contrib_num.go b/http_handle_repo_contrib_num.go new file mode 100644 index 0000000..c4ed5d1 --- /dev/null +++ b/http_handle_repo_contrib_num.go @@ -0,0 +1,9 @@ +package main + +import ( + "net/http" +) + +func handle_repo_contrib_num(w http.ResponseWriter, r *http.Request, params map[string]any) { + render_template(w, "repo_contrib_num", params) +} |