sssd

Crates.iosssd
lib.rssssd
version1.1.0
created_at2023-07-23 15:37:27.292894+00
updated_at2025-07-20 15:35:06.043283+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
size11,297
(funtoy)

documentation

README

A simple way to let your app support like ./your_app start | stop | status | daemon.

linux里面,app名字不要超过15个字符

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

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

cargo fmt