(&self, input: station_api::SystemInit)
| 112 | |
| 113 | #[cfg(any(not(feature = "canbench"), test))] |
| 114 | async fn initialize(&self, input: station_api::SystemInit) { |
| 115 | self.system_service |
| 116 | .init_canister(input) |
| 117 | .await |
| 118 | .unwrap_or_else(|err| { |
| 119 | trap(&format!("Error: initializing canister failed {err}")); |
| 120 | }); |
| 121 | } |
| 122 | |
| 123 | async fn post_upgrade(&self, input: Option<SystemUpgrade>) { |
| 124 | self.system_service |
no test coverage detected