AlpenQueue/cmd/alpenqueue/main.go
Soldier c45b61ae0c Add minimal HTTP server skeleton
Initialize Go module and create basic HTTP server structure with cmd/pkg layout. Server responds on :8080 with health check endpoint.
2025-11-16 07:40:59 +00:00

13 lines
203 B
Go

package main
import (
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("AlpenQueue running!"))
})
http.ListenAndServe(":8080", nil)
}