trellis-rs 0.10.7

Curated public Rust facade for Trellis clients and services.
Documentation
1
2
3
4
5
6
7
pub fn job_key(service: &str, job_type: &str, job_id: &str) -> String {
    format!("{service}.{job_type}.{job_id}")
}

pub fn worker_presence_key(service: &str, job_type: &str, instance_id: &str) -> String {
    format!("{service}.{job_type}.{instance_id}")
}