strecken_info/
lib.rs

1//! # strecken-info-rs
2//! A rust SDK to make requests to [strecken.info](https://strecken.info)
3//!
4//! Currently only these functions are implemented:
5//! * get revisions - See [revision]
6//! * get disruptions - See [disruptions]
7
8pub mod error;
9mod request;
10
11pub use request::{disruptions, filter, revision};
12
13#[cfg(test)]
14mod tests;