stormlight-tracker/main.go
2024-05-14 21:39:21 -04:00

15 lines
208 B
Go

package main
import (
"log/slog"
"net/http"
)
func main() {
router := http.NewServeMux()
router.HandleFunc("GET /", index)
slog.Info("Listening on port 8080")
http.ListenAndServe(":8080", router)
}