A-0.1 - Modularer Aufbau #13
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
@ -22,5 +22,5 @@
|
||||
"titleBar.inactiveForeground": "#15202b99"
|
||||
},
|
||||
"peacock.color": "#f9e64f",
|
||||
"python.pythonPath": "venv/bin/python",
|
||||
"python.pythonPath": "${workspaceRoot}/venv/bin/python",
|
||||
}
|
@ -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):
|
||||
|
Reference in New Issue
Block a user