1# -*- coding: binary -*- 2module Msf 3module Ui 4module Console 5module CommandDispatcher 6 7### 8# 9# Command dispatcher for encoder modules. 10# 11### 12class Encoder 13 14 include Msf::Ui::Console::ModuleCommandDispatcher 15 16 # 17 # Returns the name of the command dispatcher. 18 # 19 def name 20 "Encoder" 21 end 22 23 # 24 # Encoder's don't currently have a user interface. 25 # 26 def commands 27 { } 28 end 29 30end 31 32end end end end 33 34