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