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