diff options
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) +} |