9 lines
267 B
Python
9 lines
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:")
|