rama-core 0.2.0-alpha.11

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, Service};

pub mod handler;
pub use handler::service_fn;