tried out bee, will replace with own solution

This commit is contained in:
Jannis Heydemann
2026-05-06 11:28:17 +02:00
parent 71262323b9
commit c37d89c2f5
6 changed files with 108 additions and 0 deletions

16
controllers/fortnite.go Normal file
View File

@@ -0,0 +1,16 @@
package controllers
import (
beego "github.com/beego/beego/v2/server/web"
)
type FortniteController struct {
beego.Controller
}
func (c *FortniteController) Get() {
c.TplName = "fortnite.tpl"
c.Data["fort"] = "nite"
c.Data["nite"] = "fort"
c.Data["testarray"] = "hi"
}