strecken_info/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # strecken-info-rs
//! A rust SDK to make requests to [strecken.info](https://strecken.info)
//!
//! Currently only these functions are implemented:
//! * get revisions - See [revision]
//! * get disruptions - See [disruptions]

pub mod error;
mod request;

pub use request::{disruptions, filter, revision};

#[cfg(test)]
mod tests;