Files
ltlnotifyer/start.py
Alexey Sokolov 8b2bcd29e5 Fixes.
2022-03-02 15:52:27 +03:00

17 lines
346 B
Python

import logging
from aiohttp import web
from config import Config
from telegram import telegram_bot, telegram_dispatcher
import db
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)