mozhi/pages/about.go

10 lines
138 B
Go
Raw Normal View History

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