14 lines
209 B
Python
14 lines
209 B
Python
|
#!/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()
|
||
|
}
|