Files
oc-catalog/main.go
2026-02-06 11:09:46 +01:00

19 lines
296 B
Go
Executable File

package main
import (
"oc-catalog/infrastructure"
_ "oc-catalog/routers"
oclib "cloud.o-forge.io/core/oc-lib"
beego "github.com/beego/beego/v2/server/web"
)
const appname = "oc-catalog"
func main() {
// Init the oc-lib
oclib.InitAPI(appname)
infrastructure.ListenNATS()
beego.Run()
}