11 lines
242 B
C++
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())
|
|
{}
|