diff --git a/examples/pokemon-service-client-usage/examples/mock-request.rs b/examples/pokemon-service-client-usage/examples/mock-request.rs index ae7ba8c87a..64f21beb65 100644 --- a/examples/pokemon-service-client-usage/examples/mock-request.rs +++ b/examples/pokemon-service-client-usage/examples/mock-request.rs @@ -12,8 +12,8 @@ /// /// The example can be run using `cargo run --example mock-request`. /// -use aws_smithy_http::body::SdkBody; use aws_smithy_runtime::client::http::test_util::capture_request; +use aws_smithy_types::body::SdkBody; use pokemon_service_client::Client as PokemonClient; use pokemon_service_client_usage::{setup_tracing_subscriber, POKEMON_SERVICE_URL}; diff --git a/examples/pokemon-service-client-usage/src/lib.rs b/examples/pokemon-service-client-usage/src/lib.rs index 8dc558ecd8..6612ddb4c4 100644 --- a/examples/pokemon-service-client-usage/src/lib.rs +++ b/examples/pokemon-service-client-usage/src/lib.rs @@ -1,3 +1,7 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0 + */ pub static POKEMON_SERVICE_URL: &str = "http://localhost:13734"; /// Sets up the tracing subscriber to print `tracing::info!` and `tracing::error!` messages on the console.