Files
metasploit-gs/lib/rex/ui/text/pseudo_shell.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
219 B
Ruby
Raw Normal View History

module Rex
module Ui
module Text
###
#
# Pseudo-shell interface that simply includes the Shell mixin.
#
###
class PseudoShell
include Shell
end
end
end
end