diff --git a/main.go b/main.go index 1272436..a40c4d2 100644 --- a/main.go +++ b/main.go @@ -112,6 +112,8 @@ func main() { } app := fiber.New() + app.Static("/uploads", "./uploads") + app.Static("/static", "./static") app.Get("/", func(c *fiber.Ctx) error { return c.SendString("get threads")