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

14 lines
209 B
Python
Raw Normal View History

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