6 lines
118 B
Python
6 lines
118 B
Python
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class AddChannelStates(StatesGroup):
|
|
waiting_channel = State()
|