6 lines
136 B
Python
6 lines
136 B
Python
from aiogram.dispatcher.filters.state import State, StatesGroup
|
|
|
|
class Verifycation(StatesGroup):
|
|
tag = State()
|
|
token = State()
|