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