1# -*- coding: binary -*- 2 3module Rex 4module 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### 14class Output::None < Rex::Ui::Output 15end 16 17end 18end 19 20