Distribution_Service/Server/Configuration/Config.h

20 lines
347 B
C
Raw Normal View History

2025-11-11 18:09:51 +08:00
#ifndef DISTRIBUTION_SERVICE_CONFIG_H
#define DISTRIBUTION_SERVICE_CONFIG_H
#include "CCSystem.h"
class Config {
public:
CTL::String IP = "0.0.0.0";
int OrderPort = 10060;
int StreamPort = 10062;
int HttpPort = 9090;
bool Flag = false;
private:
public:
static Config* getConfig();
static bool IsRunning();
};
#endif