19 lines
509 B
Rust
19 lines
509 B
Rust
//! An MPS playback library with support for media controls (Linux & D-Bus only atm).
|
|
//! This handles the output from interpreting a script.
|
|
//! Music playback and m3u8 playlist generation are implemented in this part of the project.
|
|
//!
|
|
|
|
mod controller;
|
|
mod errors;
|
|
pub(crate) mod os_controls;
|
|
mod player;
|
|
pub(crate) mod player_wrapper;
|
|
//mod utility;
|
|
|
|
pub use controller::MpsController;
|
|
pub use errors::PlaybackError;
|
|
pub use player::MpsPlayer;
|
|
//pub use utility::{play_script};
|
|
|
|
#[cfg(test)]
|
|
mod tests {}
|