mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
* Check for valid JSON before using it * Do not allow nested keys to set be set an expiration * Prevent overwriting of existing object or array * Nested deletion support * Update data_bucket.cpp * Test cases * More test cases, fix * Update databuckets.cpp * Update databuckets.cpp * Basic databucket tests * Update databuckets.cpp * Update databuckets.cpp
21 lines
845 B
C++
21 lines
845 B
C++
#ifndef EQEMU_ZONE_CLI_H
|
|
#define EQEMU_ZONE_CLI_H
|
|
|
|
#include "../common/cli/argh.h"
|
|
|
|
class ZoneCLI {
|
|
public:
|
|
static void CommandHandler(int argc, char **argv);
|
|
static void BenchmarkDatabuckets(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void SidecarServeHttp(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static bool RanConsoleCommand(int argc, char **argv);
|
|
static bool RanSidecarCommand(int argc, char **argv);
|
|
static bool RanTestCommand(int argc, char **argv);
|
|
static void DataBuckets(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void NpcHandins(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
static void NpcHandinsMultiQuest(int argc, char **argv, argh::parser &cmd, std::string &description);
|
|
};
|
|
|
|
|
|
#endif //EQEMU_ZONE_CLI_H
|