package main
import (
"embed"
"os"
"hacknight/controllers"
"theskyscape.com/repo/skykit"
)
//go:embed all:views
var views embed.FS
func main() {
skykit.Serve(views,
skykit.WithValue("hostPrefix", os.Getenv("HOST_PREFIX")),
skykit.WithController(controllers.Home()),
skykit.WithController(controllers.Projects()),
)
}