Advertisement
DimaDevelop

Untitled

Jan 26th, 2024
913
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. from aiogram.fsm.state import State, StatesGroup
  2.  
  3.  
  4. class AuthStates(StatesGroup):
  5.     login = State()
  6.     password = State()
  7.     code = State()
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement