journal-bot/bot/commands/basehandler.py
Remy Moll e9d2582606
All checks were successful
continuous-integration/drone/push Build is passing
lists working
2023-04-21 22:05:27 +02:00

8 lines
216 B
Python

import logging
class BaseHandler:
logger = logging.getLogger(__name__)
entry_string: str
async def entry_point(self, update, context) -> None:
self.logger.info(f"Chat said: {self.entry_string}")