summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-19 21:38:59 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-19 21:38:59 +0800
commit4d4083eb52397eb089f7e1edcc9b0817b27f1ef4 (patch)
tree6442c44fdbc362048881f835712c5e3009bf00a9 /systems
parent01e2a21c7e0bf660dbf7b14acfcf1ff3c47d6416 (diff)
Sort directory constants alphabetically
Diffstat (limited to 'systems')
-rw-r--r--systems/_constants/src/lib.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/systems/_constants/src/lib.rs b/systems/_constants/src/lib.rs
index e576be3..31ba591 100644
--- a/systems/_constants/src/lib.rs
+++ b/systems/_constants/src/lib.rs
@@ -94,12 +94,12 @@ pub mod vault {
/// Directory path constants
#[constants_macros::constants("vault_dir")]
pub mod dirs {
- c! { REFSHEETS = "ref/" }
- c! { MEMBER_ROOT = "_member/" }
+ c! { CHANGES = "changes/" }
+ c! { IGNORE_RULES = "rules/ignore/" }
c! { MEMBER = "_member/{member_name}/" }
+ c! { MEMBER_ROOT = "_member/" }
c! { MEMBER_SHEET_BACKUPS = "_member/{member_name}/backups/" }
- c! { IGNORE_RULES = "rules/ignore/" }
- c! { CHANGES = "changes/" }
+ c! { REFSHEETS = "ref/" }
}
}
@@ -132,12 +132,12 @@ pub mod workspace {
/// Directory path constants
#[constants_macros::constants("workspace_dir")]
pub mod dirs {
- c! { WORKSPACE = ".jv" }
- c! { VAULT_MIRROR = ".jv/UPSTREAM/" }
- c! { LOCAL_SHEETS = ".jv/sheets/" }
c! { DRAFT_AREA = ".jv/drafts/{account}_{sheet}/" }
c! { ID_MAPPING = ".jv/idmp/" }
+ c! { LOCAL_SHEETS = ".jv/sheets/" }
+ c! { VAULT_MIRROR = ".jv/UPSTREAM/" }
c! { WORKING_AREA = "" }
+ c! { WORKSPACE = ".jv" }
}
}
@@ -171,9 +171,9 @@ pub mod user {
/// Directory path constants
#[constants_macros::constants("user_dir")]
pub mod dirs {
- c! { ROOT = ".jvcs/" }
- c! { UPSTREAM_PUBS = ".jvcs/upstreams/" }
c! { PRIVATE_KEYS = ".jvcs/private/" }
c! { PUBLIC_KEYS = ".jvcs/public/" }
+ c! { ROOT = ".jvcs/" }
+ c! { UPSTREAM_PUBS = ".jvcs/upstreams/" }
}
}