Files
metasploit-gs/lib/msf/ui_event_subscriber.rb
T
2021-01-18 14:20:57 +00:00

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