mozhi/pages/about.go

10 lines
138 B
Go
Raw Permalink Normal View History

2023-09-10 15:13:48 +00:00
package pages
import (
"github.com/gofiber/fiber/v2"
)
func HandleAbout(c *fiber.Ctx) error {
return c.Render("about", fiber.Map{})
}