16 lines
219 B
Ruby
16 lines
219 B
Ruby
|
|
module Rex
|
|
module Ui
|
|
module Text
|
|
###
|
|
#
|
|
# Pseudo-shell interface that simply includes the Shell mixin.
|
|
#
|
|
###
|
|
class PseudoShell
|
|
include Shell
|
|
end
|
|
end
|
|
end
|
|
end
|