Remove unused subsystem module.

This commit is contained in:
Paul Lietar 2015-09-01 16:53:09 +02:00
parent 267ccbe65e
commit 1399ea7c32
2 changed files with 1 additions and 10 deletions

View file

@ -35,4 +35,4 @@ pub mod player;
pub mod session;
pub mod spirc;
pub mod stream;
pub mod subsystem;

View file

@ -1,9 +0,0 @@
use std::thread;
pub trait Subsystem : Send + Sized + 'static {
fn run(self);
fn start(self) {
thread::spawn(move || self.run());
}
}