From 2584f8d7a0eb3bc55716f78a8bba45d524252b69 Mon Sep 17 00:00:00 2001 From: Bobby <30593201+luciferreeves@users.noreply.github.com> Date: Thu, 18 Dec 2025 17:45:14 +0530 Subject: basic bootstrapping for server start --- router/router.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 router/router.go (limited to 'router') diff --git a/router/router.go b/router/router.go new file mode 100644 index 0000000..11015f9 --- /dev/null +++ b/router/router.go @@ -0,0 +1,11 @@ +package router + +import "github.com/gofiber/fiber/v2" + +func Initialize(router *fiber.App) { + router.Static("/static", "./static") + + router.Get("/", func(c *fiber.Ctx) error { + return c.SendString("Lain Mail - Present day, present time") + }) +} -- cgit v1.2.3