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
14
15
mod get;
mod post;
mod index;
mod patch;
mod delete;
mod errors;

pub use self::delete::*;
pub use self::errors::*;

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