From 987f30f7bf40bd12bcf4699ca7bff25aca3253cb Mon Sep 17 00:00:00 2001 From: Redume Date: Mon, 1 May 2023 20:44:37 +0300 Subject: [PATCH] Code refactoring. Added favicon --- main.go | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 main.go diff --git a/main.go b/main.go new file mode 100644 index 0000000..66a83de --- /dev/null +++ b/main.go @@ -0,0 +1,40 @@ +package main + +import ( + "github.com/Redume/EveryNASA/api/controllers" + "github.com/Redume/EveryNASA/utils" + "github.com/gofiber/fiber/v2" + "github.com/gofiber/fiber/v2/middleware/favicon" +) + +func main() { + go utils.CheckLogs() + app := fiber.New(fiber.Config{ + AppName: "EveryNASA", + }) + app.Static("/static", "./interface/static") + app.Use(favicon.New(favicon.Config{ + File: "./interface/static/assets/icons/favicon.ico", + URL: "/favicon.ico", + })) + + app.Get("/", func(ctx *fiber.Ctx) error { + return ctx.SendFile("./interface/page/gallery.html") + }) + + app.Get("/about", func(ctx *fiber.Ctx) error { + return ctx.SendFile("./interface/page/about.html") + }) + + api := app.Group("/api") + update := api.Group("/update") + + update.Post("/wallpaper", func(ctx *fiber.Ctx) error { + return controllers.SetWallpaper(ctx) + }) + + err := app.Listen(":4000") + if err != nil { + utils.Log(err.Error()) + } +}