acts-next 0.15.6

a fast, tiny, extensiable workflow engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize, Debug, Clone)]
pub struct Model {
    pub id: String,
    pub name: String,
    pub ver: u32,
    pub size: u32,
    pub create_time: i64,
    pub update_time: i64,
    pub data: String,
    pub timestamp: i64,
}