diff options
Diffstat (limited to 'src/config.hpp')
-rw-r--r-- | src/config.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/config.hpp b/src/config.hpp new file mode 100644 index 0000000..cb6a74a --- /dev/null +++ b/src/config.hpp @@ -0,0 +1,18 @@ +#ifndef GETSUYOMI_CONFIG_HPP +#define GETSUYOMI_CONFIG_HPP + +#include <string> + +namespace getsuyomi { + +struct GetsuyomiConfig { + std::string home{}; + std::string dataHome{}; + std::string configHome{}; + std::string stateHome{}; +}; + +} // namespace getsuyomi + + +#endif |