blob: c4ed5d15f098bfb3fe6c07bff7d83a984d77bede (
plain) (
blame)
1
2
3
4
5
6
7
8
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)
}
|