mozhi/pages/about.go
Arya Kiran 6c509efcd2
All checks were successful
mozhi pipeline / Push Docker image to Codeberg docker registry (push) Successful in 3m9s
mozhi pipeline / Build and publish artifacts (push) Successful in 4m11s
add about page
2023-09-10 20:43:48 +05:30

10 lines
138 B
Go

package pages
import (
"github.com/gofiber/fiber/v2"
)
func HandleAbout(c *fiber.Ctx) error {
return c.Render("about", fiber.Map{})
}