Files
metasploit-gs/lib/msf/events.rb
T

16 lines
156 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
2010-01-15 01:24:45 +00:00
module Msf
module UiEventSubscriber
2013-08-30 16:28:33 -05:00
def on_ui_command(line)
end
2010-01-15 01:24:45 +00:00
2013-08-30 16:28:33 -05:00
def on_ui_stop()
end
2010-01-15 01:24:45 +00:00
2013-08-30 16:28:33 -05:00
def on_ui_start()
end
2010-01-15 01:24:45 +00:00
end
end