webdev_guide 0.6.0

Learn how to build a webservice in Rust!
1
2
3
4
5
6
7
pub mod capture_uri;
pub mod handle_cors;
pub mod jwt_auth;

pub use self::capture_uri::CaptureUri;
pub use self::handle_cors::handle_cors;
pub use self::jwt_auth::JWTAuth;