package main import ( "net/http" _ "github.com/mattn/go-sqlite3" ) func main() { ntfy := SetupNtfyClient() db := SetupDatabase() SetupRsvpsTable(db) hnd := &Handler{db, ntfy} http.ListenAndServe(":8000", hnd) }