diff options
Diffstat (limited to 'src/settings.hpp')
-rw-r--r-- | src/settings.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/settings.hpp b/src/settings.hpp new file mode 100644 index 0000000..8ac5c0d --- /dev/null +++ b/src/settings.hpp @@ -0,0 +1,9 @@ +#pragma once + +#include <string> + +namespace WebStat { + struct Settings { + std::string dbType = "postgresql"; + }; +} |