19 lines
330 B
Go
19 lines
330 B
Go
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)
|
|
}
|