A-0.1 - Modularer Aufbau #13

Merged
edraft merged 118 commits from 0.1 into Alpha 2021-11-25 21:02:12 +01:00
2 changed files with 10 additions and 1 deletions
Showing only changes of commit abe9a7b472 - Show all commits

View File

@ -22,5 +22,5 @@
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.color": "#f9e64f",
"python.pythonPath": "venv/bin/python",
"python.pythonPath": "${workspaceRoot}/venv/bin/python",
}

View File

@ -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):