Files
website/main.go

21 lines
391 B
Go

package main
import (
"net/http"
"prettysunflower-website/blog"
"prettysunflower-website/keys"
"prettysunflower-website/pages"
"prettysunflower-website/regio43"
"prettysunflower-website/static"
)
func main() {
pages.InitHttpHandlers()
regio43.InitHttpHandlers()
static.InitHttpHandlers()
keys.InitHttpHandlers()
blog.InitHttpHandlers()
_ = http.ListenAndServe(":3334", nil)
}