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
Ideally, I'd like for the bot-sdk to export a Router object, which I could then bind via expressApp.use to my existing express instance. The need is for hookshot to support several different listeners on the same port.
The text was updated successfully, but these errors were encountered:
There's quite a lot of middleware which goes into running an appservice, and express is not guaranteed. The app instance is exposed by the bot-sdk as a short term solution.
Okay, alternatively I need a way to pass in HTTP requests from my code into the appservice class somehow. Because of the same middleware, it's not easy to bind to the existing app instance.
Ideally, I'd like for the bot-sdk to export a Router object, which I could then bind via
expressApp.use
to my existing express instance. The need is for hookshot to support several different listeners on the same port.The text was updated successfully, but these errors were encountered: