Files
go-fiber-template/controllers/frontend.go

12 lines
241 B
Go
Raw Normal View History

2024-01-10 21:20:45 +01:00
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")
}