1# -*- coding: binary -*- 2 3module Msf 4module UiEventSubscriber 5 def on_ui_command(line) 6 end 7 8 def on_ui_stop() 9 end 10 11 def on_ui_start() 12 end 13end 14end 15 16 17