Files
metasploit-gs/lib/msf/ui/console/command_dispatcher/encoder.rb
T
James Lee 21604f33e6 add a pry command to modules, move the ModuleCommandDispatcher into its own file
git-svn-id: file:///home/svn/framework3/trunk@13630 4d416f70-5f16-0410-b530-b9f4589650da
2011-08-24 21:41:03 +00:00

32 lines
369 B
Ruby

module Msf
module Ui
module Console
module CommandDispatcher
###
#
# Command dispatcher for encoder modules.
#
###
class Encoder
include Msf::Ui::Console::ModuleCommandDispatcher
#
# Returns the name of the command dispatcher.
#
def name
"Encoder"
end
#
# Encoder's don't currently have a user interface.
#
def commands
{ }
end
end
end end end end