lists working
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-04-21 22:05:27 +02:00
parent b5551eb596
commit e9d2582606
7 changed files with 216 additions and 36 deletions

View File

@@ -0,0 +1,8 @@
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}")