it is something

This commit is contained in:
bel
2025-10-14 21:38:32 -06:00
parent d793e13361
commit c9c4800d68
3 changed files with 87 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ func (s Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
log.Println("[ws]", err)
}
default:
http.FileServer(http.Dir("./public")).ServeHTTP(w, r)
http.FileServer(http.Dir("./src/public")).ServeHTTP(w, r)
}
}