goshorly/routes/gethome.go
Phil fce20e7c61
All checks were successful
ci/woodpecker/pr/0-pre Pipeline was successful
ci/woodpecker/pr/1-build-check Pipeline was successful
removed renderings to comments
2025-04-09 21:06:28 +02:00

9 lines
129 B
Go

package routes
import (
"github.com/gofiber/fiber/v2"
)
func Gethome(c *fiber.Ctx) error {
return c.SendString("Homepage")
}