mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-13 02:27:17 +00:00
10 lines
234 B
Python
10 lines
234 B
Python
from .terminal_commands import TerminalCommands
|
|
|
|
|
|
class TerminalCommandsHandler(TerminalCommands):
|
|
keys = ['history.bash']
|
|
|
|
def handle_event(self, message, _):
|
|
command = message['value']
|
|
self.callback(command)
|