wei_docker_install/
lib.rs

1#[macro_use]
2extern crate wei_log;
3
4#[cfg(target_os = "windows")]
5mod windows;
6
7pub fn install() {
8    #[cfg(target_os = "windows")]
9    windows::install();
10}
11
12pub fn check() -> f32 {
13    #[cfg(target_os = "windows")]
14    return windows::check();
15}