mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
c0024ec6b1
Good coding practices applied only, architecture and logic were not altered.
15 lines
339 B
C++
15 lines
339 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
namespace Constants
|
|
{
|
|
inline constexpr auto DataDir = "/data";
|
|
inline constexpr auto Keystore = "/data/keystore";
|
|
|
|
QString applicationPath(const QString& path = "");
|
|
QString tmpPath(const QString& path = "");
|
|
QString cachePath(const QString& path = "");
|
|
bool ensureDirectories();
|
|
} // namespace Constants
|