greentic_flow/cache/
keys.rs1#[derive(Clone, Debug, PartialEq, Eq, Hash)]
2pub struct ArtifactKey {
3 pub engine_profile_id: String,
4 pub wasm_digest: String,
5}
6
7impl ArtifactKey {
8 pub fn new(engine_profile_id: String, wasm_digest: String) -> Self {
9 Self {
10 engine_profile_id,
11 wasm_digest,
12 }
13 }
14}