rustiful 0.1.0

This crate is for creating a JSONAPI backend, backed by Iron.
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod get;
pub mod post;
pub mod index;
pub mod patch;
pub mod delete;

pub use self::delete::*;

pub use self::get::*;
pub use self::index::*;
pub use self::patch::*;
pub use self::post::*;
use super::status::Status;