Potion/cmd/web/main.go
2026-01-27 12:36:30 -07:00

13 lines
162 B
Go

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