sssd

Crates.iosssd
lib.rssssd
version2.0.0
created_at2023-07-23 15:37:27.292894+00
updated_at2026-01-02 17:44:30.41088+00
descriptionA simple way to let your app support like ./your_app start | stop | status | daemon.
homepage
repositoryhttps://github.com/funtoy/sssd
max_upload_size
id923818
size17,823
(funtoy)

documentation

README

A simple way to let your app support like

./your_app start | stop | status | daemon

Examples

#[tokio::main]
async fn main() {
    sssd::create(your_async_func, Some(stop_callback_func)).await
}

async fn your_async_func() -> anyhow::Result<()> {
    // ...
}

async fn stop_callback_func() -> anyhow::Result<()> {
    // ...
}
Commit count: 3

cargo fmt