1 2 3 4 5 6 7 8 9
pub fn rocks() { println!("DevOps Rocks!!"); } pub fn security() { println!("DevSecOps is even better!"); } pub fn ttd() { println!("Very important for Dev AND Sec AND Ops!") }
1 2 3 4 5 6 7 8 9
pub fn rocks() { println!("DevOps Rocks!!"); } pub fn security() { println!("DevSecOps is even better!"); } pub fn ttd() { println!("Very important for Dev AND Sec AND Ops!") }