9 lines
No EOL
267 B
Python
9 lines
No EOL
267 B
Python
import lib.commands
|
|
import lib.globalData
|
|
|
|
def init(globalData: globalData):
|
|
helpCommand: lib.commands.Command = lib.commands.Command("[command]", "Prints this help message.", helpCommand)
|
|
|
|
|
|
def helpCommand(command: str = None):
|
|
print("Available Commands:") |