diff options
author | Runxi Yu <me@runxiyu.org> | 2025-02-09 01:53:06 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-02-09 01:53:06 +0800 |
commit | 5af62e009dc271ea5e7271e99bf1e2bdd5ec8965 (patch) | |
tree | 838fad1dddc776dbc854f5fc7a938d40427f8937 /main.go | |
parent | NOTES.md: Remove (diff) | |
download | forge-5af62e009dc271ea5e7271e99bf1e2bdd5ec8965.tar.gz forge-5af62e009dc271ea5e7271e99bf1e2bdd5ec8965.tar.zst forge-5af62e009dc271ea5e7271e99bf1e2bdd5ec8965.zip |
*: Add basic repo home with a README and recent commits display
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -27,6 +27,7 @@ func main() { } http.HandleFunc("/{$}", handle_index) + http.HandleFunc("/{project_name}/repos/{repo_name}/", handle_repo_index) listener, err := net.Listen(config.HTTP.Net, config.HTTP.Addr) if err != nil { |