diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-27 06:16:58 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-27 06:16:58 +0800 |
| commit | 2abc5acd25756f3ef6a6ad34f8777ffe241e750d (patch) | |
| tree | b312764324b4da037d5b3c46957a77dcd19502f3 /src/collects | |
| parent | 4eef9ce364bb660421a96052a3fb126a33b22c63 (diff) | |
Reorganize command modules under a unified cmds directory
Diffstat (limited to 'src/collects')
| -rw-r--r-- | src/collects/status.rs | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/collects/status.rs b/src/collects/status.rs deleted file mode 100644 index b0e8fcd..0000000 --- a/src/collects/status.rs +++ /dev/null @@ -1,38 +0,0 @@ -use std::time::SystemTime; - -use just_enough_vcs::vcs::data::{ - local::{ - latest_file_data::LatestFileData, local_sheet::LocalSheetData, - workspace_analyzer::AnalyzeResultPure, - }, - member::MemberId, - sheet::SheetName, -}; - -pub struct JVStatusCollect { - pub current_account: MemberId, - pub current_sheet: SheetName, - pub is_host_mode: bool, - pub in_ref_sheet: bool, - pub analyzed_result: AnalyzeResultPure, - pub latest_file_data: LatestFileData, - pub local_sheet_data: LocalSheetData, - pub update_time: SystemTime, - pub now_time: SystemTime, -} - -impl Default for JVStatusCollect { - fn default() -> Self { - Self { - current_account: MemberId::default(), - current_sheet: SheetName::default(), - is_host_mode: false, - in_ref_sheet: false, - analyzed_result: AnalyzeResultPure::default(), - latest_file_data: LatestFileData::default(), - local_sheet_data: LocalSheetData::default(), - update_time: SystemTime::now(), - now_time: SystemTime::now(), - } - } -} |
