10 lines
86 B
Python
10 lines
86 B
Python
print("Available utils:")
|
|
|
|
a = [
|
|
"makekey"
|
|
]
|
|
|
|
for t in a:
|
|
print(f"\t{t}")
|
|
|
|
print("") |