moosicbox_load_balancer 0.1.0

MoosicBox load balancer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(feature = "fail-on-warnings", deny(warnings))]

#[cfg(not(target_os = "windows"))]
mod server;

fn main() {
    #[cfg(not(target_os = "windows"))]
    {
        server::serve()
    }
    #[cfg(target_os = "windows")]
    {
        panic!("Windows OS is not supported. Blame the way daemons are designed.")
    }
}