5 lines
103 B
Python
5 lines
103 B
Python
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class AdminStartSG(StatesGroup):
|
|
start = State() |