mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
* Zone sidecar work * Process management work * Merge * Sidecar work * API config option * Request proxy work * Proxy headers and params * Change port * Remove code * Sim work * Sidecar work * Update loot_simulator_controller.cpp * Update loot_simulator_controller.cpp * Formatting * Post merge change * Windows compile fix * Update sidecar_api.cpp * Update strings.cpp
16 lines
400 B
C++
16 lines
400 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 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);
|
|
};
|
|
|
|
|
|
#endif //EQEMU_ZONE_CLI_H
|