Skip to content

v0.17.0

Compare
Choose a tag to compare
@ggicci ggicci released this 15 Mar 05:51
· 15 commits to main since this release
c8657ee

#99 Added echo integration, register a "path" directive that can work with echo router.

import httpin_integration "github.com/ggicci/httpin/integration"

func init() {
    e := echo.New()
    httpin_integration.UseEchoRouter("path", e)

    // or
    httpin_integration.UseEchoPathRouter(e)
}

Thanks

@sorenmat