1 2 3 4 5 6 7 8 9 10 11
//! Play flow //! //! Mirrors `src/session/play.h` and `src/session/play.c`. use super::stream::Stream; use crate::types::Result; /// Begin playing on a stream. pub fn play_begin(_stream: &mut Stream, _stream_name: &str) -> Result<()> { Ok(()) }