This is a simple adapter for Fiber that allows you to deploy your application using Fume.
package main
import (
fume "github.com/fumeapp/fiber"
"github.com/gofiber/fiber/v2"
)
func main() {
app := fiber.New()
app.GET("/", func(c *fiber.Ctx) { c.Status(200).JSON(&fiber.Map{"message": "Hello World"}) })
fume.Start(app, fume.Options{})
}
Option | Description | Default |
---|---|---|
Port |
Port to listen on | 8000 |
Host |
Host to listen on | localhost |