update: make things work with the new package system

This commit is contained in:
ngn
2024-08-13 03:01:00 +03:00
parent 528df304e9
commit a556ed08aa
14 changed files with 556 additions and 373 deletions

8
routes/package.go Normal file
View File

@ -0,0 +1,8 @@
package routes
import "github.com/gofiber/fiber/v2"
func GET_package(c *fiber.Ctx) error {
//name := c.Params("name")
return c.Render("package", &fiber.Map{})
}