mod handle; mod jack; mod render; pub use self::handle::*; pub use self::jack::*; pub use self::render::*; use crate::prelude::*; pub struct Transport; impl Transport { pub fn new () -> Result> { Ok(Self) } } const ACTIONS: [(&'static str, &'static str);3] = [ ("Tab/Shift-Tab, Arrows", "Navigate"), //("Home", "⏹ Stop and rewind"), ("Space", "⏮ Play from cursor/pause"), ("Shift-Space", "⯈ Play from start/rewind"), ];