Potion/cmd/web/main.go
2025-06-13 22:49:38 -07:00

10 lines
165 B
Go

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