main.rs 248 B

123456789101112
  1. use inpower_iot_mgc_rs::cmd::cmd::cmd;
  2. #[cfg(not(target_env = "msvc"))]
  3. use tikv_jemallocator::Jemalloc;
  4. #[cfg(not(target_env = "msvc"))]
  5. #[global_allocator]
  6. static GLOBAL: Jemalloc = Jemalloc;
  7. #[tokio::main]
  8. async fn main() {
  9. cmd().await;
  10. }