Skip to content

Commit

Permalink
Use util-base64 in ServerGenerator (smithy-lang#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr authored and milesziemer committed Dec 14, 2022
1 parent 192cbf2 commit 48a6d2c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,8 @@ private static void writeSerdeContextBase(TypeScriptWriter writer) {
writer.addImport("ServerSerdeContext", "__ServerSerdeContext", "@aws-smithy/server-common");
writer.addImport("NodeHttpHandler", null, "@aws-sdk/node-http-handler");
writer.addImport("streamCollector", null, "@aws-sdk/node-http-handler");
writer.addImport("fromBase64", null, "@aws-sdk/util-base64-node");
writer.addImport("toBase64", null, "@aws-sdk/util-base64-node");
writer.addImport("fromBase64", null, TypeScriptDependency.AWS_SDK_UTIL_BASE64.packageName);
writer.addImport("toBase64", null, TypeScriptDependency.AWS_SDK_UTIL_BASE64.packageName);
writer.addImport("fromUtf8", null, "@aws-sdk/util-utf8-node");
writer.addImport("toUtf8", null, "@aws-sdk/util-utf8-node");

Expand Down

0 comments on commit 48a6d2c

Please sign in to comment.