12345678910111213141516171819202122 |
- package main
- import (
- "git.clearsky.net.au/cody/gex.git/app"
- "git.clearsky.net.au/cody/gex.git/pkg/gex"
- "git.clearsky.net.au/cody/gex.git/pkg/utils"
- )
- func main() {
- // check cli arguments are set and correct
- utils.CheckArgs()
- app.Init()
- gex.InitRouter()
- app.Middleware()
- app.Routes()
- gex.StartServer()
- }
|