| 60 | |
| 61 | #[derive(CandidType, Serialize)] |
| 62 | struct InstallCode<'a> { |
| 63 | canister_id: Principal, |
| 64 | mode: InstallMode, |
| 65 | wasm_module: &'a [u8], |
| 66 | arg: &'a [u8], |
| 67 | } |
| 68 | |
| 69 | let response_bytes = agent |
| 70 | .update( |
nothing calls this directly
no outgoing calls
no test coverage detected