]> git.localhorst.tv Git - blank.git/blob - src/shared/commands.hpp
impersonate command
[blank.git] / src / shared / commands.hpp
1 #ifndef BLANK_SHARED_COMMANDS_HPP_
2 #define BLANK_SHARED_COMMANDS_HPP_
3
4 #include "CLI.hpp"
5
6
7 namespace blank {
8
9 class ImpersonateCommand
10 : public CLI::Command {
11
12         void Execute(CLI &, CLIContext &, TokenStreamReader &) override;
13
14 };
15
16 class TeleportCommand
17 : public CLI::Command {
18
19         void Execute(CLI &, CLIContext &, TokenStreamReader &) override;
20
21 };
22
23 }
24
25 #endif