Files
metasploit-gs/lib/msf/ui/console/command_dispatcher/encoder.rb
T
Tab Assassin 7e5e0f7fc8 Retab lib
2013-08-30 16:28:33 -05:00

33 lines
409 B
Ruby

# -*- coding: binary -*-
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