wakezilla 0.2.10

A Wake-on-LAN proxy server written in Rust
1
2
3
4
5
6
7
pub fn frontend_build_is_required(
    is_release: bool,
    frontend_index_exists: bool,
    use_prebuilt_frontend: bool,
) -> bool {
    !frontend_index_exists || (is_release && !use_prebuilt_frontend)
}