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
|
|
|