summaryrefslogtreecommitdiff
path: root/src/audio/rodio.rs
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-05-31 14:59:25 +0200
committerYuval Adam <_@yuv.al>2024-05-31 14:59:25 +0200
commit4a4c5b9174cf0182d4eb755f5d97ca432e5960ca (patch)
treee0d49598fa09ed0ad859b9afb95ea4b88e51d04f /src/audio/rodio.rs
parent10976b7bdfcdb57724d9e2b1dedd2c172b0b5973 (diff)
Add multiple backend support
Diffstat (limited to 'src/audio/rodio.rs')
-rw-r--r--src/audio/rodio.rs9
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!()
+ }
+}