Files
2026-01-07 21:26:28 +08:00

10 lines
144 B
C++

#ifndef LOGGER_H
#define LOGGER_H
#include <string>
std::string getSystemTime();
void postLog(const std::string& message, int level);
#endif