// SPDX-FileCopyrightText: 2021 Nheko Contributors // // SPDX-License-Identifier: GPL-3.0-or-later #pragma once #include #include namespace nhlog { void init(const std::string &file); std::shared_ptr ui(); std::shared_ptr net(); std::shared_ptr db(); std::shared_ptr crypto(); std::shared_ptr qml(); extern bool enable_debug_log_from_commandline; }