moved html and css out to seperate files.

This commit is contained in:
visionmercer 2026-04-15 09:08:14 +02:00
commit f9cfd3fc3b
5 changed files with 152 additions and 126 deletions

View file

@ -25,6 +25,7 @@ func main() {
mux.HandleFunc("/browse/", h.BrowseISO)
mux.HandleFunc("/file/", h.DownloadFile)
mux.HandleFunc("/raw/", h.RawFile)
mux.HandleFunc("/static/", h.ServeStatic)
mux.HandleFunc("/", h.ListISOs)
fmt.Printf("ISOSilo running at %s\n", *addr)