diff options
| author | Yuval Adam <_@yuv.al> | 2024-05-31 14:59:25 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-05-31 14:59:25 +0200 |
| commit | 4a4c5b9174cf0182d4eb755f5d97ca432e5960ca (patch) | |
| tree | e0d49598fa09ed0ad859b9afb95ea4b88e51d04f /src/audio/rodio.rs | |
| parent | 10976b7bdfcdb57724d9e2b1dedd2c172b0b5973 (diff) | |
Add multiple backend support
Diffstat (limited to 'src/audio/rodio.rs')
| -rw-r--r-- | src/audio/rodio.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/audio/rodio.rs b/src/audio/rodio.rs new file mode 100644 index 0000000..04883dd --- /dev/null +++ b/src/audio/rodio.rs @@ -0,0 +1,9 @@ +use super::AudioBackend; + +pub struct Rodio {} + +impl AudioBackend for Rodio { + fn play(&self, _url: &str) { + todo!() + } +} |
