This commit is contained in:
bronku 2026-05-14 00:05:11 +02:00
parent 67afa1d183
commit 3b90728954
15 changed files with 10 additions and 2518 deletions

View file

@ -2,6 +2,8 @@ package main
import (
"html/template"
"log"
"net/http"
"os"
)
@ -45,4 +47,6 @@ func main() {
if err != nil {
panic(err)
}
log.Fatal(http.ListenAndServe(":8000", http.FileServer(http.Dir("www"))))
}