rama-core 0.3.0

rama service core code, used by rama and service authors
Documentation
1
2
3
4
5
6
7
8
9
10
//! Service type and utilities.
//!
//! Service are the abstraction of (leaf) services in Rama.

mod svc;
#[doc(inline)]
pub use svc::{BoxService, MirrorService, RejectError, RejectService, Service, StaticOutput};

pub mod handler;
pub use handler::service_fn;