fenrir/src/fenrir-package/core/commands.py

20 lines
287 B
Python
Raw Normal View History

2016-07-08 19:36:27 -04:00
#!/bin/python
2016-07-10 09:43:15 -04:00
#from commands import curr_line
#from commands import shut_up
2016-07-08 19:36:27 -04:00
commandInfo = {
'currCommand': '',
'commandCueue':[]
}
commands = {
2016-07-10 09:43:15 -04:00
'onnInput':{
},
'onScreenChanged':{
},
'commands':{
# 'curr_line': curr_line.command(),
# 'shut_up': shut_up.command()
}
2016-07-08 19:36:27 -04:00
}