-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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: