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
Currently, the App object is a mix between a builder (it's the interface to globally manipulating the router) and can be turned into_server and a global entry point into building something that can be called into. I'm not sure if App is a good name for it.
Related: do we want to do something more sophisticated with the current "app" concept, like mountable sub-apps and/or the ability to map functions over the application state as you descend the router?
Currently, the
App
object is a mix between a builder (it's the interface to globally manipulating the router) and can be turnedinto_server
and a global entry point into building something that can be called into. I'm not sure ifApp
is a good name for it.Mainly, it collides with a frequent usage of
App
in other frameworks, for example, Django usesApp
four a mountable subapp (basically a collection of endpoints). https://docs.djangoproject.com/en/2.1/ref/settings/#installed-appsThe text was updated successfully, but these errors were encountered: