mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-07 14:53:16 -04:00
- Introduced three new markdown files: CLI_LIBRARY_SYNC_COMPLETE.md, IMPLEMENTATION_COMPLETE.md, and LIBRARY_SYNC_SETUP_IMPLEMENTATION.md for comprehensive documentation. - Updated various CLI domain modules to improve argument handling and output formatting. - Enhanced device, index, job, library, location, network, and search modules for better integration and user experience. - Refactored code across multiple domains to improve maintainability and clarity.
9 lines
148 B
Rust
9 lines
148 B
Rust
use std::path::PathBuf;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct GlobalArgs {
|
|
pub seed: Option<u64>,
|
|
pub out_dir: Option<PathBuf>,
|
|
pub clean: bool,
|
|
}
|