You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pushup apps are built by routing to pages via a http.ServeMux
But to my knowledge we haven't actually demonstrated this yet. Also it would likely require a bit of clunky manual manipulation on the other Go app's part because some of the Pushup behavior is wrapped up in its main package and not exposed as a library/package API.
This would force us to do the work of actually glueing these things together, which will likely flush out some bugs or point to whether additional code is needed.
The text was updated successfully, but these errors were encountered:
Hey @paulsmith, just found this awesome library, it covers most of what I wanted from a base project, coming from django/rails projects. I'm developing a gofiber app at work and personally played around with chi & echo, so I could easily come up with a contribution to this issue, if that's something appreciated. Just let me know and I'll give you a PR for that.
In docs and blog posts we talk about how Pushup apps can be easily incorporated into a larger Go app. This is because:
http.Handler
(see Adapt Responder interface to http.Handler #81)http.ServeMux
But to my knowledge we haven't actually demonstrated this yet. Also it would likely require a bit of clunky manual manipulation on the other Go app's part because some of the Pushup behavior is wrapped up in its
main
package and not exposed as a library/package API.This would force us to do the work of actually glueing these things together, which will likely flush out some bugs or point to whether additional code is needed.
The text was updated successfully, but these errors were encountered: