aboutsummaryrefslogtreecommitdiff
path: root/http_server.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-04-05 14:47:52 +0800
committerRunxi Yu <me@runxiyu.org>2025-04-05 16:59:25 +0800
commitab4f8ebdcbc13ab7556023a212e067d472d22069 (patch)
treea72e084c875a2a4382258fc60a1ae158a8246052 /http_server.go
parentReduce unnecessary allocations when converting []byte to string (diff)
downloadforge-ab4f8ebdcbc13ab7556023a212e067d472d22069.tar.gz
forge-ab4f8ebdcbc13ab7556023a212e067d472d22069.tar.zst
forge-ab4f8ebdcbc13ab7556023a212e067d472d22069.zip
Remove man pages
They're better documented on the Web
Diffstat (limited to 'http_server.go')
-rw-r--r--http_server.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/http_server.go b/http_server.go
index cc5a5f5..4b6e0ab 100644
--- a/http_server.go
+++ b/http_server.go
@@ -87,9 +87,6 @@ func (router *forgeHTTPRouter) ServeHTTP(writer http.ResponseWriter, request *ht
}
switch segments[1] {
- case "man":
- manHandler.ServeHTTP(writer, request)
- return
case "static":
staticHandler.ServeHTTP(writer, request)
return