vss 0.1.0

A dead simple library to allow for easily reused shutdown signal handling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# vss
### valkyrie_pilot's `shutdown_signal`

This is a very simple crate, made to be used with
axum's `graceful_shutdown` method, like so:

```rust
#[tokio::main]
async fn main() {
axum::serve(tcp, app)
    .with_graceful_shutdown(vss::shutdown_signal())
    .await
    .unwrap();
}
```