mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-13 15:16:41 +01:00
5 lines
90 B
Rust
5 lines
90 B
Rust
use crate::*;
|
|
|
|
pub trait HasJack {
|
|
fn jack (&self) -> &Arc<RwLock<JackConnection>>;
|
|
}
|