aboutsummaryrefslogtreecommitdiff
path: root/routes/index.go
blob: ccd398bf010fa3bb5ee88c358821840aa58f9e85 (plain)
1
2
3
4
5
6
7
package routes

import "github.com/gofiber/fiber/v2"

func Index(c *fiber.Ctx) error {
	return c.SendString("index")
}