5 lines
108 B
Python
5 lines
108 B
Python
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class ExampleState(StatesGroup):
|
|
input_user = State() |