jay/component/core.cpp
2025-03-10 22:26:04 +02:00

11 lines
242 B
C++

// SPDX-FileCopyrightText: 2024 Yury Gubich <blue@macaw.me>
// SPDX-License-Identifier: GPL-3.0-or-later
#include "core.h"
Core::Core(const std::string& configPath):
config(configPath),
router(),
logger(config.getLogLevel())
{}