stormlight-tracker/main.go

16 lines
208 B
Go
Raw Permalink Normal View History

2024-05-15 01:39:21 +00:00
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)
}