// Copyright 2024 The ChromiumOS Authors1// Use of this source code is governed by a BSD-style license that can be2// found in the LICENSE file.34//! Tokio versions of type's defined in crosvm's `base` crate.56mod sys {7cfg_if::cfg_if! {8if #[cfg(any(target_os = "android", target_os = "linux"))] {9pub mod linux;10pub use linux::*;11} else if #[cfg(windows)] {12pub mod windows;13pub use windows::*;14}15}16}1718mod event;19mod tube;2021pub use sys::event::EventTokio;22pub use sys::tube::TubeTokio;232425