diff options
author | Eddy Pedroni <epedroni@pm.me> | 2025-07-22 22:00:00 +0200 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2025-07-22 22:00:00 +0200 |
commit | 6da14e1590935710055ebc81ba55017b457ca1ad (patch) | |
tree | 799daf6f75331183ea48ece00d62ec92f0fc7a51 /daemon/src/configuration.h | |
parent | f0835be9ffcae8e5c74c8fc6a0da2f7bc49343ac (diff) |
Initial daemon implementation, no routing yet
Diffstat (limited to 'daemon/src/configuration.h')
-rw-r--r-- | daemon/src/configuration.h | 17 |
1 files changed, 17 insertions, 0 deletions
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 <map> + +namespace midi_router +{ + +struct Configuration +{ + + Device_Map const devices; + Route_Map const routes; +}; + +} // namespace midi_router |