mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-14 19:51:29 +00:00
10 lines
181 B
C++
10 lines
181 B
C++
void WorldserverCLI::TestCommand(int argc, char **argv, argh::parser &cmd, std::string &description)
|
|
{
|
|
description = "Test command";
|
|
|
|
if (cmd[{"-h", "--help"}]) {
|
|
return;
|
|
}
|
|
|
|
}
|