```
for pub_key in team.keys() {
let encrypted = pub_key.encrypt(value)?;
secret.add(username, encrypted);
}
```
```
for pub_key in team.keys() {
let encrypted = pub_key.encrypt(value)?;
secret.add(username, encrypted);
}
```
```
struct Secret {
encrypted_values: HashMap<String, String>, // username -> encrypted
environment: String
}
```
```
struct Secret {
encrypted_values: HashMap<String, String>, // username -> encrypted
environment: String
}
```
Magic moment when a developer becomes a champion in their org. They shift from "cool tech" to "I can solve real problems with this."
Magic moment when a developer becomes a champion in their org. They shift from "cool tech" to "I can solve real problems with this."