This commit is contained in:
2023-09-11 23:21:55 +03:00
parent a5261d2d77
commit 3773814a61
15 changed files with 54 additions and 54 deletions

View File

@@ -1,10 +1,10 @@
from bot.handlers.routing import handle_routing
from bot.handlers.callback_vouch import handle_button
from bot.handlers.callback_unlink import handle_unlink
from bot.handlers.handle_startup import handle_startup
from bot.handlers.handle_join_request import handle_join_request
from bot.api import register_webhook, send_message
from bot.config import FEEDBACK_CHAT_ID
from handlers.routing import handle_routing
from handlers.callback_vouch import handle_button
from handlers.callback_unlink import handle_unlink
from handlers.handle_startup import handle_startup
from handlers.handle_join_request import handle_join_request
from api import register_webhook, send_message
from config import FEEDBACK_CHAT_ID
from sanic.app import Sanic
app = Sanic(name="welcomecenter")