-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstates.py
More file actions
82 lines (42 loc) · 1.35 KB
/
Copy pathstates.py
File metadata and controls
82 lines (42 loc) · 1.35 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
from aiogram.filters.state import State, StatesGroup
class MoveMouseCoord(StatesGroup):
waiting_for_coords = State()
class MoveMouseDirection(StatesGroup):
waiting_for_direction = State()
waiting_for_offset = State()
class MsgBox(StatesGroup):
waiting_for_text = State()
class MessageWrite(StatesGroup):
waiting_for_text = State()
class CmdExec(StatesGroup):
waiting_for_command = State()
class PythonExec(StatesGroup):
waiting_for_code = State()
class ClipboardSet(StatesGroup):
waiting_for_text = State()
class MicRecord(StatesGroup):
waiting_for_seconds = State()
class KillProcess(StatesGroup):
waiting_for_pid = State()
class VideoPc(StatesGroup):
waiting_for_seconds = State()
class Download(StatesGroup):
waiting_for_path = State()
class Run(StatesGroup):
waiting_for_path = State()
class Wallpaper(StatesGroup):
waiting_for_path = State()
class Ls(StatesGroup):
waiting_for_path = State()
class OpenBrowser(StatesGroup):
waiting_for_url = State()
class CreateMoreFolders(StatesGroup):
waiting_for_count = State()
waiting_for_name = State()
waiting_for_text = State()
class DownloadFile(StatesGroup):
waiting_for_file = State()
class WebcamRecord(StatesGroup):
waiting_for_seconds = State()
class ClickImage(StatesGroup):
waiting_for_photo = State()