(input: GetArtifactInput)
| 11 | // Canister entrypoints for the controller. |
| 12 | #[query(name = "get_artifact")] |
| 13 | async fn get_artifact(input: GetArtifactInput) -> ApiResult<GetArtifactResponse> { |
| 14 | CONTROLLER.get_artifact(input).await |
| 15 | } |
| 16 | |
| 17 | // Controller initialization and implementation. |
| 18 | lazy_static! { |
nothing calls this directly
no test coverage detected