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
- Host: GitHub
- URL: https://github.com/fumeapp/go-test
- Owner: fumeapp
- Created: 2024-04-17T02:53:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-17T05:42:01.000Z (over 1 year ago)
- Last Synced: 2025-01-14T03:16:53.787Z (9 months ago)
- Language: Go
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Fiber+Fume example
> Example setup of a Fiber project running in Fume
![]()
```go
package mainimport (
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