diff options
Diffstat (limited to 'routes/index.go')
-rw-r--r-- | routes/index.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/routes/index.go b/routes/index.go new file mode 100644 index 0000000..ccd398b --- /dev/null +++ b/routes/index.go @@ -0,0 +1,7 @@ +package routes + +import "github.com/gofiber/fiber/v2" + +func Index(c *fiber.Ctx) error { + return c.SendString("index") +} |