webservice_tutorial 1.0.3

Learn how to build a webservice in Rust!
1
2
3
4
5
6
7
8
pub mod jwt_auth;
pub use self::jwt_auth::JWTAuth;

pub mod handle_cors;
pub use self::handle_cors::handle_cors;

pub mod capture_uri;
pub use self::capture_uri::CaptureUri;