Files
metasploit-gs/lib/rex/ui/output/none.rb
T
2021-02-08 12:24:12 +00:00

19 lines
387 B
Ruby

# -*- coding: binary -*-
module Rex
module Ui
###
#
# This output medium implements all the required output routines but does not
# back them against any sort of device. This is basically meant to be put in
# place of something that expects to be able to deal with a functional output
# device when one does not actually exist.
#
###
class Output::None < Rex::Ui::Output
end
end
end