This commit is contained in:
Lars
2024-01-10 21:20:45 +01:00
parent 34bdd1b43a
commit 9ce6757fcd
18 changed files with 571 additions and 2 deletions

1
controllers/example.go Normal file
View File

@@ -0,0 +1 @@
package controllers

11
controllers/frontend.go Normal file
View File

@@ -0,0 +1,11 @@
package controllers
import "github.com/gofiber/fiber/v2"
// func FrontendExample(c *fiber.Ctx) error {
// return c.SendFile("frontend/test.html")
// }
func FrontendExample(c *fiber.Ctx) error {
return c.SendFile("frontend/test.html")
}