8 lines
216 B
Python
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}") |