mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
16 lines
156 B
Ruby
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
|
|
|