8 lines
152 B
Python
8 lines
152 B
Python
from aiogram import Dispatcher
|
|
|
|
from .throttling import ThrottlingMiddleware
|
|
|
|
|
|
def setup(dp: Dispatcher):
|
|
dp.middleware.setup(ThrottlingMiddleware)
|