CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/ui/console/command_dispatcher/encoder.rb
Views: 1904
1
# -*- coding: binary -*-
2
module Msf
3
module Ui
4
module Console
5
module CommandDispatcher
6
7
###
8
#
9
# Command dispatcher for encoder modules.
10
#
11
###
12
class 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
30
end
31
32
end end end end
33
34