Potion/cmd/web/main.go
2026-01-23 10:25:51 -07:00

13 lines
178 B
Go

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