Initial commit

This commit is contained in:
2025-05-22 18:08:15 +02:00
commit 364ffa15de
33 changed files with 900 additions and 0 deletions

18
main.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"net/http"
"prettysunflower-website/keys"
"prettysunflower-website/pages"
"prettysunflower-website/radio"
"prettysunflower-website/static"
)
func main() {
pages.InitHttpHandlers()
radio.InitHttpHandlers()
static.InitHttpHandlers()
keys.InitHttpHandlers()
_ = http.ListenAndServe(":3334", nil)
}