12 lines
226 B
Rust
12 lines
226 B
Rust
use librustdesk::*;
|
|
|
|
#[cfg(not(target_os = "macos"))]
|
|
fn main() {}
|
|
|
|
#[cfg(target_os = "macos")]
|
|
fn main() {
|
|
crate::common::load_custom_client();
|
|
hbb_common::init_log(false, "service");
|
|
crate::start_os_service();
|
|
}
|