-
Notifications
You must be signed in to change notification settings - Fork 202
Proposal to help with repository #176
Comments
Since we rely on this heavily as well, I also offer my help. |
If someone is looking for a maintained alternative, which was created before this repo, I'm happy to accept PRs to https://github.com/akrylysov/algnhsa. |
is there fiber support? i dont see an example |
As long as fiber implements the http.Handler interface, it should work. I haven't tried myself, but it seems adaptor.FiberApp is exactly what you need. You can just pass the result of the |
Can we update the readme w/ an example that I can test? |
I just confirmed, package main
import (
"github.com/akrylysov/algnhsa"
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/middleware/adaptor"
)
func main() {
app := fiber.New()
app.Get("/", func(c *fiber.Ctx) error {
return c.SendString("Hello, World!")
})
algnhsa.ListenAndServe(adaptor.FiberApp(app), nil)
} I'll update README a bit later to reflect this. |
I would like to reach out and offer my help on keeping this repository up to date, tested, and stable. I imagine you are very busy @sapessi but if you'd like to allow me to help I'd be more than glad.
The text was updated successfully, but these errors were encountered: