Write a deprecation notice, and sleep for 3 seconds.
(msg: &str)
| 678 | |
| 679 | /// Write a deprecation notice, and sleep for 3 seconds. |
| 680 | pub async fn print_deprecated_warning(msg: &str) { |
| 681 | eprintln!("warning: {msg}"); |
| 682 | tokio::time::sleep(std::time::Duration::from_secs(3)).await |
| 683 | } |
| 684 | |
| 685 | /// Import a container image with an encapsulated ostree commit. |
| 686 | async fn container_import( |
no outgoing calls
no test coverage detected