1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! A placeholder crate. /// A simple placeholder for distributed rate limiter. pub fn placeholder() -> &'static str { "This crate is a placeholder." } #[cfg(test)] mod tests { use super::*; #[test] fn it_works() {} }