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

get resources work

This commit is contained in:
Dominic 2019-09-27 16:36:38 +02:00
parent 595705ee31
commit 8db145587f
Signed by: msrd0
GPG key ID: DCC8C247452E98F9
6 changed files with 91 additions and 20 deletions

View file

@ -1,5 +1,5 @@
#[macro_use]
extern crate serde_derive;
#[macro_use] extern crate gotham_derive;
#[macro_use] extern crate serde;
pub use hyper::StatusCode;
@ -8,7 +8,7 @@ pub use resource::{
Resource,
IndexResource,
GetResource,
PostResource
CreateResource
};
mod result;