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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
156 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
2010-01-15 01:24:45 +00:00
module Msf
module UiEventSubscriber
def on_ui_command(line)
end
def on_ui_stop()
end
def on_ui_start()
end
end
end