1
0
Fork 0
mirror of https://gitlab.com/msrd0/gotham-restful.git synced 2025-04-20 06:54:46 +00:00

initial commit

This commit is contained in:
Dominic 2019-09-26 17:24:40 +02:00
commit 4a7aa6eef5
Signed by: msrd0
GPG key ID: DCC8C247452E98F9
8 changed files with 1957 additions and 0 deletions

18
src/lib.rs Normal file
View file

@ -0,0 +1,18 @@
#[macro_use]
extern crate serde_derive;
pub use hyper::StatusCode;
mod resource;
pub use resource::{
Resource,
IndexResource,
GetResource,
PostResource
};
mod result;
pub use result::ResourceResult;
mod routing;
pub use routing::ResourceRouter;