1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
pub mod country;
pub mod protocol;
pub mod status;
pub mod url;
pub(crate) mod utils;

pub use crate::url::Url;
pub use country::Country;
pub use protocol::Protocol;
pub use status::Status;

pub async fn get_status() -> reqwest::Result<Status> {
    Status::get().await
}