mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-10-31 01:50:47 +03:00
19 lines
234 B
C++
19 lines
234 B
C++
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
#include <spdlog/spdlog.h>
|
||
|
|
||
|
namespace log {
|
||
|
void
|
||
|
init(const std::string &file);
|
||
|
|
||
|
std::shared_ptr<spdlog::logger>
|
||
|
main();
|
||
|
|
||
|
std::shared_ptr<spdlog::logger>
|
||
|
net();
|
||
|
|
||
|
std::shared_ptr<spdlog::logger>
|
||
|
db();
|
||
|
}
|