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

9 lines
136 B
C++

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