Files
ltlnotifyer/start.py
Alexey Sokolov 4aaed03655 small fixes
2022-08-22 21:19:42 +03:00

16 lines
336 B
Python

import logging
from aiohttp import web
from config import Config
from telegram import telegram_bot, telegram_dispatcher
from web import create_app
config = Config()
app = create_app(telegram_bot, telegram_dispatcher, config)
logging.basicConfig(level=logging.INFO)
if __name__ == '__main__':
web.run_app(app, port=config.port)