10 lines
312 B
Python
10 lines
312 B
Python
|
def help_list():
|
||
|
return """
|
||
|
["h", "help"], - for help.
|
||
|
["q", "quit", "exit", "stop"], - to stop program.
|
||
|
["c", "clear", "cls"], - to clear console.
|
||
|
["r", "restart"], - to restart Docker Compose services.
|
||
|
["run"], - to run main.py in docker container.
|
||
|
["$..."], - to evaluate command in docker container.
|
||
|
"""
|