diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-06-10 16:34:42 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-06-10 16:34:42 +0800 |
commit | 4abd6020df12427aed62599a68abba87b1ccc3b8 (patch) | |
tree | e2504019eb8663ef0e49d409b2ca279030c70c60 /store/works/python/cru/service/_app.py | |
parent | 73d711416dc50378321982c88fe01e48ea18e20a (diff) | |
download | crupest-4abd6020df12427aed62599a68abba87b1ccc3b8.tar.gz crupest-4abd6020df12427aed62599a68abba87b1ccc3b8.tar.bz2 crupest-4abd6020df12427aed62599a68abba87b1ccc3b8.zip |
refactor: bye, python!
Diffstat (limited to 'store/works/python/cru/service/_app.py')
-rw-r--r-- | store/works/python/cru/service/_app.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/store/works/python/cru/service/_app.py b/store/works/python/cru/service/_app.py new file mode 100644 index 0000000..b4c6271 --- /dev/null +++ b/store/works/python/cru/service/_app.py @@ -0,0 +1,30 @@ +from ._base import ( + AppBase, + CommandDispatcher, + PathCommandProvider, +) +from ._template import TemplateManager +from ._nginx import NginxManager +from ._gen_cmd import GenCmdProvider + +APP_ID = "crupest" + + +class App(AppBase): + def __init__(self): + super().__init__(APP_ID, f"{APP_ID}-service") + self.add_feature(PathCommandProvider()) + self.add_feature(TemplateManager()) + self.add_feature(NginxManager()) + self.add_feature(GenCmdProvider()) + 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 |