1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00
metasploit-framework/lib/msf/events.rb
Tab Assassin 7e5e0f7fc8 Retab lib
2013-08-30 16:28:33 -05: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