summaryrefslogtreecommitdiff
path: root/src/audio/rodio.rs
blob: 04883dd8d35dae91a08375165b455ffc7b69e67e (plain)
1
2
3
4
5
6
7
8
9
use super::AudioBackend;

pub struct Rodio {}

impl AudioBackend for Rodio {
    fn play(&self, _url: &str) {
        todo!()
    }
}