update deps, make engine code into a lib
All checks were successful
mozhi pipeline / Push Docker image to Codeberg docker registry (push) Successful in 3m54s
mozhi pipeline / Build and publish artifacts (push) Successful in 13m27s

This commit is contained in:
2023-09-09 20:03:14 +05:30
parent 662192ab41
commit 566eb69743
28 changed files with 91 additions and 3537 deletions

View File

@@ -4,8 +4,6 @@ import (
"fmt"
"runtime"
"codeberg.org/aryak/mozhi/utils"
"github.com/gofiber/fiber/v2"
)
@@ -22,7 +20,6 @@ func HandleIndex(c *fiber.Ctx) error {
return c.Render("index", fiber.Map{
"host": c.Hostname(),
"version": utils.Version(),
"fiberversion": fiber.Version,
"goversion": runtime.Version(),
})