A microservice framework
```rust /// Entry into Example service
pub async fn main() -> std::io::Result<()> { //#region Setup Server let northapp = power::() .gracefulshutdown() .address("localhost") .name("Example Service") .path_prefix("/api") .port("8080") .api(Api) .up();
north_app.start().await //#endregion
} ```