Started blank beego project, current task is to add first pages, understand how to build a frontend and then make first api calls to gitea

This commit is contained in:
2026-04-28 22:10:15 +02:00
parent d3f819a183
commit 064b8b5419
4 changed files with 91 additions and 0 deletions

7
main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "github.com/beego/beego/v2/server/web"
func main() {
web.Run()
}