static-hoster/src/main.go

12 lines
155 B
Go
Raw Normal View History

2023-01-24 14:50:38 +00:00
package main
import (
"nikurasu.gay/static-hoster/router"
)
func main() {
r := router.Create()
// Listen and Server in 0.0.0.0:8080
r.Run(":8080")
}