metasploit-framework/lib/msf/ui_event_subscriber.rb

16 lines
156 B
Ruby

# -*- coding: binary -*-
module Msf
module UiEventSubscriber
def on_ui_command(line)
end
def on_ui_stop()
end
def on_ui_start()
end
end
end