File size: 167 Bytes
79b2aa4
 
 
 
 
 
1
2
3
4
5
6
def parseAndRun(commandlist,command,args=[],obj=None):
    if command in commandlist: func = commandlist[command]["func"]

    if not func: return

    func(args)