10 lines
165 B
Go
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()
|
|
}
|