channel-block-tg/middlewares/__init__.py
Kostiantyn Kriuchkov eab45a5088 Deleted mysql support, redis password, webhook, keyboard constructors, filters, loguru.
Added support of decorators in handlers
Added function to notify admins on startup
2020-04-14 01:50:57 +03:00

8 lines
154 B
Python

from aiogram import Dispatcher
from .throttling import ThrottlingMiddleware
def setup(dp: Dispatcher):
dp.middleware.setup(ThrottlingMiddleware())