fix the whole batchKind thingy

This commit is contained in:
Tamo 2022-09-09 01:09:50 +02:00 committed by Clément Renault
parent ef4594c078
commit 074dee59ec
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
4 changed files with 292 additions and 5 deletions

View file

@ -27,6 +27,9 @@ pub struct Task {
#[serde(with = "time::serde::rfc3339::option")]
pub finished_at: Option<OffsetDateTime>,
pub error: Option<String>,
pub info: Option<String>,
pub status: Status,
pub kind: KindWithContent,
}