-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
43 lines (37 loc) · 757 Bytes
/
main.py
File metadata and controls
43 lines (37 loc) · 757 Bytes
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
from utils import *
text = \
"""
1) show all serevrs name
2) show all ip's of this token
3) delete ip addres
4) generate new address
5) assigin addresz
6) TurnServer-ON
7) creat fl ip
8) unass fl ip
"""
while True:
clear()
print(text)
selec = int(input('> '))
if selec == 0:
break
elif selec == 1:
show_serversL()
elif selec == 2:
show_ips()
input('Press [Enter]')
elif selec == 3:
delte_ip()
elif selec == 4:
creat_ip()
elif selec == 5:
AssIpToServ()
elif selec == 6:
TuOn()
elif selec == 7:
creat_ip_fl()
elif selec == 8:
un_ass_fl_ip()
elif selec == 9:
Assipfuck()