using beego framework

This commit is contained in:
Jannis Heydemann
2026-05-06 09:49:51 +02:00
commit 71262323b9
9 changed files with 392 additions and 0 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
_ "gitea-projekt-dashboard/routers"
beego "github.com/beego/beego/v2/server/web"
)
func main() {
beego.Run()
}