Skip to content

Commit

Permalink
Re-export DisplayErrorContext
Browse files Browse the repository at this point in the history
  • Loading branch information
jdisanti committed Nov 12, 2022
1 parent 653e4cd commit 0f3143c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ internal fun pubUseTypes(runtimeConfig: RuntimeConfig, model: Model): List<Runti
listOf(
PubUseType(RuntimeType.Blob(runtimeConfig), ::hasBlobs),
PubUseType(RuntimeType.DateTime(runtimeConfig), ::hasDateTimes),
) + CargoDependency.SmithyHttp(runtimeConfig).asType().let { http ->
) + CargoDependency.SmithyTypes(runtimeConfig).asType().let { types ->
listOf(PubUseType(types.member("error::display::DisplayErrorContext")) { true })
} + CargoDependency.SmithyHttp(runtimeConfig).asType().let { http ->
listOf(
PubUseType(http.member("result::SdkError")) { true },
PubUseType(http.member("byte_stream::ByteStream"), ::hasStreamingOperations),
Expand Down

0 comments on commit 0f3143c

Please sign in to comment.