[][src]Macro mantle::service

macro_rules! service {
    ($svc:path) => { ... };
}

This macro is used to define the "main" service.

Example

fn main() {
   mantle::service!(TheMainService);
}