feat: add task system

This commit is contained in:
2025-05-09 00:56:26 +08:00
parent 791b75b3af
commit 9d58d961bd
21 changed files with 70 additions and 190 deletions

View File

@@ -54,6 +54,8 @@ pub enum RecorderError {
IOError { source: std::io::Error },
#[snafu(transparent)]
DbError { source: sea_orm::DbErr },
#[snafu(transparent)]
DbSqlxError { source: sea_orm::SqlxError },
#[snafu(transparent, context(false))]
FigmentError {
#[snafu(source(from(figment::Error, Box::new)))]