An open API service indexing awesome lists of open source software.

https://github.com/fumeapp/go-test

temp go test repo
https://github.com/fumeapp/go-test

Last synced: 8 months ago
JSON representation

temp go test repo

Awesome Lists containing this project

README

          

# Fiber+Fume example
> Example setup of a Fiber project running in Fume



```go
package main

import (
fume "github.com/fumeapp/fiber"
"github.com/gofiber/fiber/v2"
)

func main() {
app := fiber.New()
app.Get("/", func(c *fiber.Ctx) error {
return c.Status(200).JSON(&fiber.Map{"message": "Fiber running with Fume"})
})
fume.Start(app, fume.Options{})
}
```
deployment 3 test