mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 02:10:47 +03:00
8e9d210a2a
- Patch the olm repo with a CMakeLists.txt file
21 lines
277 B
C++
21 lines
277 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <spdlog/spdlog.h>
|
|
|
|
namespace nhlog {
|
|
void
|
|
init(const std::string &file);
|
|
|
|
std::shared_ptr<spdlog::logger>
|
|
ui();
|
|
|
|
std::shared_ptr<spdlog::logger>
|
|
net();
|
|
|
|
std::shared_ptr<spdlog::logger>
|
|
db();
|
|
|
|
std::shared_ptr<spdlog::logger>
|
|
crypto();
|
|
}
|