Telegram module #10

Merged
skobkin merged 19 commits from feature_telegram into master 2022-05-30 20:54:27 +00:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit aaaed01f9d - Show all commits

View file

@ -3,6 +3,10 @@ from telebot.types import Message
class CommandProcessor:
"""
Processes user input and dispatches the data to other services.
"""
bot: telebot.TeleBot
def __init__(self, token: str):

View file

@ -2,6 +2,10 @@ import telebot
class Notifier:
"""
Sends notifications to users about new RSS feed items.
"""
bot: telebot.TeleBot
def __init__(self, token: str):