mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-21 15:07:54 -04:00
- Introduced a new Events domain for monitoring events in real-time, allowing users to filter events by type, library ID, job ID, and device ID. - Updated the CLI to include an Events command, enabling users to access the new monitoring features. - Enhanced the Cargo.lock and related modules to support the new functionality, ensuring seamless integration with existing systems. - Added necessary arguments and command handling for the Events command in the CLI.
19 lines
279 B
Rust
19 lines
279 B
Rust
pub mod cloud;
|
|
pub mod config;
|
|
pub mod daemon;
|
|
pub mod devices;
|
|
pub mod events;
|
|
pub mod file;
|
|
pub mod index;
|
|
pub mod job;
|
|
pub mod library;
|
|
pub mod location;
|
|
pub mod logs;
|
|
pub mod network;
|
|
pub mod search;
|
|
pub mod spaces;
|
|
pub mod sync;
|
|
pub mod tag;
|
|
pub mod update;
|
|
pub mod volume;
|