Files
spacedrive/core/benchmarks/src/cli/args.rs
Jamie Pine 910dce67f5 feat: Add new documentation and enhance CLI functionality
- 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.
2025-10-04 21:31:47 -07:00

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,
}