1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright 2022 Parthka. All rights reserved. MIT license. mod server; pub use server::{Headers, Method, Req, Res, Router, WebServer}; pub use tokio; #[cfg(test)] mod tests { #[test] fn it_works() { /* https://github.com/dparthka/srest-test */ } }