0
0

Initial commit from DCSP - 2026/1/15 15:11:58

This commit is contained in:
xb
2026-01-15 15:11:58 +08:00
commit c93536b187
100 changed files with 59765 additions and 0 deletions

15
lib/liblog.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef _LIB_LOG_H_
#define _LIB_LOG_H_
#include <spdlog/spdlog.h>
#include <spdlog/sinks/stdout_color_sinks.h>
#include <spdlog/sinks/rotating_file_sink.h>
#include <string>
using namespace std;
void spdlog_initz(string level);
#endif