CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/base/simple/encoder.rb
Views: 11784
1
# -*- coding: binary -*-
2
module Msf
3
module Simple
4
5
###
6
#
7
# A simplified encoder wrapper. Currently there is no simplification
8
# required. This is here because stuff is there.
9
#
10
###
11
module Encoder
12
include Module
13
end
14
15
end
16
end
17
18