From abe9a7b472e6ee87924cf994ec9397a729cf1629 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Mon, 15 Nov 2021 19:36:39 +0100 Subject: [PATCH] Improved files --- .vscode/settings.json | 2 +- src/gismo/application.py | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 7786c39..3062c47 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -22,5 +22,5 @@ "titleBar.inactiveForeground": "#15202b99" }, "peacock.color": "#f9e64f", - "python.pythonPath": "venv/bin/python", + "python.pythonPath": "${workspaceRoot}/venv/bin/python", } \ No newline at end of file diff --git a/src/gismo/application.py b/src/gismo/application.py index a85f7d3..573a1e5 100644 --- a/src/gismo/application.py +++ b/src/gismo/application.py @@ -1,3 +1,12 @@ +from cpl_core.application import ApplicationABC +from cpl_core.configuration import ConfigurationABC +from cpl_core.dependency_injection import ServiceProviderABC +from cpl_core.logging import LoggerABC + +from gismo_core.abc.bot_service_abc import BotServiceABC +from gismo_core.services.bot_service import BotService + + class Application(ApplicationABC): def __init__(self, config: ConfigurationABC, services: ServiceProviderABC):