Files
oc-shared/main.go

15 lines
177 B
Go
Raw Normal View History

2024-08-12 14:12:51 +02:00
package main
import (
_ "oc-shared/routers"
oclib "cloud.o-forge.io/core/oc-lib"
)
2024-09-04 16:33:21 +02:00
const appname = "oc-shared"
2024-08-12 14:12:51 +02:00
func main() {
2025-03-28 08:48:39 +01:00
// Init the oc-lib
2026-02-03 16:06:48 +01:00
oclib.InitAPI(appname)
2024-08-12 14:12:51 +02:00
}