27 lines
904 B
Python
27 lines
904 B
Python
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.service.bot_service import BotService
|
|
from modules_core.abc.module_service_abc import ModuleServiceABC
|
|
|
|
|
|
class Application(ApplicationABC):
|
|
|
|
def __init__(self, config: ConfigurationABC, services: ServiceProviderABC):
|
|
ApplicationABC.__init__(self, config, services)
|
|
|
|
self._bot: BotService = services.get_service(BotServiceABC)
|
|
self._logger: LoggerABC = services.get_service(LoggerABC)
|
|
|
|
async def configure(self):
|
|
pass
|
|
|
|
async def main(self):
|
|
try:
|
|
await self._bot.start_async()
|
|
except Exception as e:
|
|
self._logger.error(__name__, 'Start failed', e)
|