Potion/cmd/web/main.go
2025-06-13 16:44:23 -07:00

10 lines
149 B
Go

package main
import "github.com/haydenhargreaves/Potion/internal/app/server"
const PORT = 3000
func main() {
server.Init(PORT).Setup().Start()
}