#pragma once #include #include namespace config::server { struct DisplayConfig { int rotation = 0; std::chrono::milliseconds refreshMs = std::chrono::milliseconds(1000); std::string framebuffer = "/dev/fb0"; }; } // namespace config::server