at_api_rs/
lib.rs

1//! # at-api-rs
2//!
3//! Tools for interacting with the [Auckland Transport API](https://dev-portal.at.govt.nz/).
4//! You must register to receive an API key to use this library.
5
6pub mod error;
7mod realtime;
8pub mod types;
9
10// Auckland Transport base API URL.
11pub(crate) const BASE_API_URL: &str = "https://api.at.govt.nz/v2";
12
13pub use realtime::Realtime;