| Crates.io | sssd |
| lib.rs | sssd |
| version | 1.1.0 |
| created_at | 2023-07-23 15:37:27.292894+00 |
| updated_at | 2025-07-20 15:35:06.043283+00 |
| description | A simple way to let your app support like ./your_app start | stop | status | daemon. |
| homepage | |
| repository | https://github.com/funtoy/sssd |
| max_upload_size | |
| id | 923818 |
| size | 11,297 |
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<()> {
// ...
}