aboutsummaryrefslogtreecommitdiff
path: root/tools/cru-py/cru/service/_app.py
blob: d6f74ddc33467593e5c39877f4fee3e7aec7eefd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from ._base import (
    AppBase,
    CommandDispatcher,
    AppInitializer,
    PathCommandProvider,
)
from ._config import ConfigManager
from ._data import DataManager
from ._template import TemplateManager

APP_ID = "crupest"

class App(AppBase):
    def __init__(self):
        super().__init__(APP_ID,f"{APP_ID}-service")
        self.add_feature(PathCommandProvider())
        self.add_feature(AppInitializer())
        self.add_feature(DataManager())
        self.add_feature(ConfigManager())
        self.add_feature(TemplateManager())
        self.add_feature(CommandDispatcher())

    def run_command(self):
        command_dispatcher = self.get_feature(CommandDispatcher)
        command_dispatcher.run_command()


def create_app() -> App:
    app = App()
    app.setup()
    return app