diff options
author | crupest <crupest@outlook.com> | 2020-06-12 18:39:24 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-12 18:39:24 +0800 |
commit | cc62df19e5f8aa216660915f46ff290c8eeab1d0 (patch) | |
tree | 4b96cfe4613edacbd6b5e94d0b74d25bebeb1387 /Timeline/Configs | |
parent | 45993fadcc7a4e40acfb75bd0baa19c1354395da (diff) | |
download | timeline-cc62df19e5f8aa216660915f46ff290c8eeab1d0.tar.gz timeline-cc62df19e5f8aa216660915f46ff290c8eeab1d0.tar.bz2 timeline-cc62df19e5f8aa216660915f46ff290c8eeab1d0.zip |
refactor(backend): Move some string constant from PathProvider to ApplicationConfiguration.
Diffstat (limited to 'Timeline/Configs')
-rw-r--r-- | Timeline/Configs/ApplicationConfiguration.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Timeline/Configs/ApplicationConfiguration.cs b/Timeline/Configs/ApplicationConfiguration.cs index 2715f84e..fec7f06c 100644 --- a/Timeline/Configs/ApplicationConfiguration.cs +++ b/Timeline/Configs/ApplicationConfiguration.cs @@ -2,6 +2,9 @@ {
public static class ApplicationConfiguration
{
+ public const string WorkDirKey = "WorkDir";
+ public const string DefaultWorkDir = "/timeline";
+ public const string DatabaseFileName = "timeline.db";
public const string DisableFrontEndKey = "DisableFrontEnd";
public const string FrontEndProxyOnlyKey = "FrontEndProxyOnly";
}
|