-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfsm.py
67 lines (43 loc) · 1.15 KB
/
fsm.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from aiogram.dispatcher.filters.state import State, StatesGroup
class FSM_start(StatesGroup):
fio = State()
menu = State()
swap_profile = State()
class FSM_timetable(StatesGroup):
timetable = State()
today_tomorrow = State()
someone_timetable = State()
someone_exam = State()
class FSM_study(StatesGroup):
study = State()
subject = State()
class FSM_helps(StatesGroup):
help = State()
wishes = State()
class FSM_activity(StatesGroup):
activity = State()
activities = State()
someone_points = State()
top_students = State()
class FSM_guide(StatesGroup):
guide = State()
class FSM_admin(StatesGroup):
is_admin = State()
useful_links = State()
cafes = State()
elders = State()
leisure_places = State()
class FSM_useful_links(StatesGroup):
to_add = State()
to_delete = State()
class FSM_cafes(StatesGroup):
to_add = State()
to_delete = State()
class FSM_leisure_places(StatesGroup):
to_add = State()
to_delete = State()
class FSM_elders(StatesGroup):
to_add = State()
to_delete = State()
class FSM_unban(StatesGroup):
to_unban = State()