restrepo 0.5.12

A collection of components for building restful webservices with actix-web
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Configuration of api service and rest interface. Handles wrapping errors, enforcing content types, route and auth setup.
mod api;
mod crud;
mod data;
mod events;
mod resource;

#[doc(inline)]
pub use api::ApiService;
#[doc(inline)]
pub use crud::*;
#[doc(inline)]
pub use data::*;
#[doc(inline)]
pub use events::*;
#[doc(inline)]
pub use resource::*;