diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-02-26 16:31:04 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-02-26 16:31:04 +0800 |
| commit | 3c4699e2b82659da8517bea3d1cecfad6bb976a9 (patch) | |
| tree | 8b7ae7ef585f0091365ab3771d11776a85d1cb44 /src/cmds/collect | |
| parent | 9420a530e371747cd6df79a5f3bbbf814effe949 (diff) | |
Remove status command and workspace reader
Diffstat (limited to 'src/cmds/collect')
| -rw-r--r-- | src/cmds/collect/status.rs | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/cmds/collect/status.rs b/src/cmds/collect/status.rs deleted file mode 100644 index fba86c2..0000000 --- a/src/cmds/collect/status.rs +++ /dev/null @@ -1,38 +0,0 @@ -use std::time::SystemTime; - -use just_enough_vcs::lib::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(), - } - } -} |
