mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Remove unused subsystem module.
This commit is contained in:
parent
267ccbe65e
commit
1399ea7c32
2 changed files with 1 additions and 10 deletions
|
@ -35,4 +35,4 @@ pub mod player;
|
|||
pub mod session;
|
||||
pub mod spirc;
|
||||
pub mod stream;
|
||||
pub mod subsystem;
|
||||
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
use std::thread;
|
||||
|
||||
pub trait Subsystem : Send + Sized + 'static {
|
||||
fn run(self);
|
||||
fn start(self) {
|
||||
thread::spawn(move || self.run());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue