Files
metasploit-gs/lib/rex/post/mysql/ui/console/command_dispatcher.rb
T
2024-02-21 16:16:14 +00:00

27 lines
666 B
Ruby

# -*- coding: binary -*-
require 'rex/ui/text/dispatcher_shell'
require 'rex/post/sql/ui/console/command_dispatcher'
module Rex
module Post
module MySQL
module Ui
# Base class for all command dispatchers within the MySQL console user interface.
module Console::CommandDispatcher
include Rex::Post::Sql::Ui::Console::CommandDispatcher
# Return the subdir of the `documentation/` directory that should be used
# to find usage documentation
#
# @return [String]
def docs_dir
::File.join(super, 'mysql_session')
end
end
end
end
end
end