acts 0.17.2

a fast, lightweight, extensiable workflow engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::ActUserVar;

/// use secrets var to read the secrets data from task context
#[derive(Clone)]
pub struct SecretsVar;

impl ActUserVar for SecretsVar {
    fn name(&self) -> String {
        "secrets".to_string()
    }
}