selene-daemon 0.1.0

Official music player daemon for Selene
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// IPC
pub mod daemon;

mod ipc;
pub use ipc::*;

// Engines
pub mod listener;
pub mod player;

// Other
pub mod playlist;

pub const AUDIO_BUFFER_SIZE: usize = 16 * 1024;

pub fn wait() {
    std::thread::sleep(std::time::Duration::from_millis(1));
}