1
0
Fork 0
mirror of https://gitlab.com/msrd0/gotham-restful.git synced 2025-02-23 13:02:28 +00:00
deprecated-gotham-restful/src/lib.rs

19 lines
285 B
Rust
Raw Normal View History

2019-09-26 17:24:40 +02:00
#[macro_use]
extern crate serde_derive;
pub use hyper::StatusCode;
mod resource;
pub use resource::{
Resource,
IndexResource,
GetResource,
PostResource
};
mod result;
2019-09-27 15:35:02 +02:00
pub use result::{ResourceResult, Success};
2019-09-26 17:24:40 +02:00
mod routing;
2019-09-26 17:42:28 +02:00
pub use routing::{DrawResources, DrawResourceRoutes};