34 lines
864 B
Rust
34 lines
864 B
Rust
// Tauri commands exposed to frontend
|
|
// TRACES: UR-002, UR-003, UR-004, UR-005, UR-009, UR-011, UR-012, UR-017, UR-019, UR-025 |
|
|
// DR-015, DR-017, DR-021, DR-028
|
|
pub mod auth;
|
|
pub mod connectivity;
|
|
pub mod conversions;
|
|
pub mod device;
|
|
pub mod download;
|
|
pub mod offline;
|
|
pub mod playback_mode;
|
|
pub mod playback_reporting;
|
|
pub mod player;
|
|
pub mod playlist;
|
|
pub mod repository;
|
|
pub mod sessions;
|
|
pub mod storage;
|
|
pub mod sync;
|
|
|
|
pub use auth::*;
|
|
pub use connectivity::*;
|
|
pub use conversions::*;
|
|
pub use device::*;
|
|
pub use download::*;
|
|
pub use offline::*;
|
|
pub use playback_mode::*;
|
|
#[allow(unused_imports)] // Used when playback_reporting is fully integrated
|
|
pub use playback_reporting::*;
|
|
pub use player::*;
|
|
pub use playlist::*;
|
|
pub use repository::{*, RepositoryManager, RepositoryManagerWrapper};
|
|
pub use sessions::*;
|
|
pub use storage::*;
|
|
pub use sync::*;
|