12 lines
100 B
Python
12 lines
100 B
Python
print("Available utils:")
|
|
|
|
a = [
|
|
"makekey",
|
|
"joinroom"
|
|
]
|
|
|
|
for t in a:
|
|
print(f"\t{t}")
|
|
|
|
print("")
|