Initial commit.

This commit is contained in:
2026-06-10 10:20:09 +05:00
commit 8d6109d3b3
33 changed files with 1299 additions and 0 deletions
@@ -0,0 +1,8 @@
package httpserver
import "net/http"
func (h *httpServer) defaultHandler(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(http.StatusNotFound)
_, _ = w.Write([]byte("Unknown path."))
}