Bases: BaseModel
, ABC
Application config protocol.
Application configs must define the create_app()
method.
After instantiation, all pathlib.Path
types will
be resolved to convert them to absolute paths.
Parameters:
get_app
abstractmethod
Initialize an app instance from this config.
Source code in taps/apps/_protocol.py
| @abc.abstractmethod
def get_app(self) -> App:
"""Initialize an app instance from this config."""
...
|