chromedriver_api/
prelude.rs

1#![allow(unused_imports)]
2
3pub use crate::{ Result, Error };
4
5pub(crate) use macron::*;
6pub(crate) use std::format as fmt;
7pub(crate) use std::path::{ Path, PathBuf };
8pub(crate) use std::sync::Arc;
9pub(crate) use std::time::Duration;
10pub(crate) use tokio::sync::{ Mutex, Notify };
11pub(crate) use tokio::time::sleep;