13 lines
162 B
Go
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()
|
|
}
|