basic cli args parsing, working plugin paths and semi working configs

This commit is contained in:
2024-05-30 11:46:58 +02:00
parent df449a475c
commit 04191858de
8 changed files with 135 additions and 6 deletions

9
src/json_to_config.hpp Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <nlohmann/json_fwd.hpp>
// fwd
struct SimpleConfigModel;
bool load_json_into_config(const nlohmann::ordered_json& config_json, SimpleConfigModel& conf);