基本可用。

This commit is contained in:
2026-03-10 14:32:11 +08:00
parent b24bc8a75d
commit d2fc41496e
13 changed files with 302 additions and 42 deletions

View File

@@ -4,6 +4,7 @@
#include <spdlog/sinks/stdout_color_sinks.h>
#include <spdlog/spdlog.h>
#include <string>
#include <vector>
extern std::shared_ptr<spdlog::logger> gLogger;
@@ -18,6 +19,8 @@ public:
static std::string MD5(const std::string& data);
static std::string RandomStrNum();
static std::string urlEncode(const std::string& data);
static std::vector<std::string> split(const std::string& str, const std::string& delim);
static void trim(std::string& str);
};
#endif