Module

domains

Domain protocol for pluggable feature modules.

Domains register routes, middleware, and other app extensions on first access.

Classes

Domain 1
Protocol for pluggable domain modules. A domain encapsulates a feature (e.g. admin, API, docs) and…

Protocol for pluggable domain modules.

A domain encapsulates a feature (e.g. admin, API, docs) and registers its routes and middleware with the app when invoked.

Methods

register 1
Register routes, middleware, and other extensions with the app.
def register(self, app: App) -> None
Parameters
Name Type Description
app