taps.run.apps.registry¶
AppConfigT
module-attribute
¶
Application config type.
register_app() ¶
register_app(
*, name: str
) -> Callable[[type[AppConfigT]], type[AppConfigT]]
Decorator for registering an app config type.
Example
An app config can be defined and registered using a name.
from pydantic import Field
from taps.apps.app import App
from taps.config import Config
from taps.run.app import register_app
@register('foo')
class FooConfig(Config):
n: int = Field(1, description='count')
def create_app(self) -> App:
from taps.apps.foo import FooApp
return FooApp(n=self.n)
Registration will make the app named "foo" available within the CLI.
```Parameters:
-
name
(str
) –Name of the application. This will be used as the app option within the CLI.
Source code in taps/run/apps/registry.py
get_registered_apps() ¶
Get all registered application configs.
Returns: