8 lines
135 B
Go
8 lines
135 B
Go
|
package routes
|
||
|
|
||
|
import "github.com/gofiber/fiber/v2"
|
||
|
|
||
|
func GetHome(c *fiber.Ctx) error {
|
||
|
return c.Render("views/home", fiber.Map{})
|
||
|
}
|