12 lines
241 B
Go
12 lines
241 B
Go
|
|
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")
|
||
|
|
}
|