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