From 6da14e1590935710055ebc81ba55017b457ca1ad Mon Sep 17 00:00:00 2001 From: Eddy Pedroni Date: Tue, 22 Jul 2025 22:00:00 +0200 Subject: Initial daemon implementation, no routing yet --- daemon/src/configuration.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 daemon/src/configuration.h (limited to 'daemon/src/configuration.h') diff --git a/daemon/src/configuration.h b/daemon/src/configuration.h new file mode 100644 index 0000000..4189315 --- /dev/null +++ b/daemon/src/configuration.h @@ -0,0 +1,17 @@ +#pragma once + +#include "types.h" + +#include + +namespace midi_router +{ + +struct Configuration +{ + + Device_Map const devices; + Route_Map const routes; +}; + +} // namespace midi_router -- cgit v1.2.3