Init commit

This commit is contained in:
2022-06-04 22:02:51 +03:00
commit 64c6aeb002
59 changed files with 1399 additions and 0 deletions

0
state/__init__.py Normal file
View File

11
state/checkout.py Normal file
View File

@@ -0,0 +1,11 @@
from aiogram.dispatcher.filters.state import StatesGroup, State
class Checkout(StatesGroup):
first_name = State()
last_name = State()
phone_number = State()
address = State()
loaded = State()
finish = State()

9
state/post.py Normal file
View File

@@ -0,0 +1,9 @@
from aiogram.dispatcher.filters.state import StatesGroup, State
class Post(StatesGroup):
name = State()
description = State()
price = State()
image = State()
finish = State()

8
state/state.py Normal file
View File

@@ -0,0 +1,8 @@
from aiogram.dispatcher.filters.state import StatesGroup, State
class UserState(StatesGroup):
confirm = State()
class AddUser(StatesGroup):
user_id = State()