/
Shymer123
/
LumenServer
Обзор
Документация
Войти
/
Shymer123
/
LumenServer
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Server/SourceFiles/Core/System/ConfigPaths.h
24 строки
473 B
Shymer123
Initial commit: LumenServer
20 июн 2026, 12:43
20 июн 2026, 12:43
173f14c
Код
Авторство
О чём код?
#ifndef CONFIGPATHS_H #define CONFIGPATHS_H #include <string> namespace Core::System { class ConfigPaths { public: static std::string configDir(); static std::string dataDir(); static std::string filesDir(); static std::string chunksDir(); static std::string configFile(); private: static std::string ensureDirExists(const std::string& path); }; } // namespace Core::System #endif // CONFIGPATHS_H