// SPDX-FileCopyrightText: Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later #pragma once #include #include #include "spdlog/logger.h" namespace nhlog { void init(const QString &level, const QString &path, bool to_stderr); std::shared_ptr ui(); std::shared_ptr net(); std::shared_ptr db(); std::shared_ptr crypto(); std::shared_ptr qml(); }