15 lines
443 B
Python
15 lines
443 B
Python
from .template import *
|
|
|
|
|
|
class Plain(BotFunc):
|
|
"""Not a command: just keeps logs and usage_data"""
|
|
def __init__(self, prst):
|
|
super().__init__(prst)
|
|
|
|
def create_handler(self):
|
|
h = MessageHandler(Filters.text, callback=self.add_to_log)
|
|
return h
|
|
|
|
def add_to_log(self, update: Update, context: CallbackContext) -> None:
|
|
super().entry_point()
|
|
super().increase_counter("receive_activity") |