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/rex/ui/output/none.rb
Views: 1904
1
# -*- coding: binary -*-
2
3
module Rex
4
module Ui
5
6
###
7
#
8
# This output medium implements all the required output routines but does not
9
# back them against any sort of device. This is basically meant to be put in
10
# place of something that expects to be able to deal with a functional output
11
# device when one does not actually exist.
12
#
13
###
14
class Output::None < Rex::Ui::Output
15
end
16
17
end
18
end
19
20