Init commit
This commit is contained in:
commit
d6e00c56e7
49 changed files with 2324 additions and 0 deletions
4
Mousey/Bot/States/__init__.py
Normal file
4
Mousey/Bot/States/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
__all__ = ["OfferNews"]
|
||||
|
||||
from .offer_news import OfferNews
|
||||
|
||||
7
Mousey/Bot/States/offer_news.py
Normal file
7
Mousey/Bot/States/offer_news.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from aiogram.fsm.state import StatesGroup, State
|
||||
|
||||
|
||||
class OfferNews(StatesGroup):
|
||||
typing_text = State()
|
||||
typing_contact = State()
|
||||
|
||||
Reference in a new issue