change robots.txt to cache

This commit is contained in:
fromost
2025-10-09 17:19:04 +08:00
parent 2556781b45
commit 6f8a1eada1
3 changed files with 9 additions and 9 deletions

View File

@@ -9,6 +9,8 @@ lazy_static!(
.join(APP_DIR_NAME);
pub static ref APP_DATA_DIR: PathBuf = BASE_DIRS.data_dir().to_path_buf()
.join(APP_DIR_NAME);
pub static ref APP_CACHE_PATH: PathBuf = BASE_DIRS.cache_dir().to_path_buf()
.join(APP_DIR_NAME);
pub static ref APP_CONIFG_FILE_PATH: PathBuf = APP_CONFIG_DIR.clone()
.join("config.ini");
);