upload all files

This commit is contained in:
2026-01-07 21:26:28 +08:00
parent 1d35a422ec
commit 6d7544e0a3
17 changed files with 2987 additions and 0 deletions

9
Modules/Logger.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef LOGGER_H
#define LOGGER_H
#include <string>
std::string getSystemTime();
void postLog(const std::string& message, int level);
#endif