Initial commit
This commit is contained in:
18
main.go
Normal file
18
main.go
Normal 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)
|
||||
}
|
Reference in New Issue
Block a user