Disable prefork

This commit is contained in:
Shiny Nematoda
2023-03-17 07:43:19 +00:00
parent b208d87309
commit 1ec11e8963
+1 -3
View File
@@ -95,9 +95,7 @@ func main() {
os.Exit(1)
}
app := fiber.New(fiber.Config{
Prefork: true,
})
app := fiber.New()
app.Use(SetHeaders)
app.Use(recover.New())