1
0
mirror of https://codeberg.org/aryak/mozhi synced 2025-01-13 04:12:06 +05:30

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{})
}