From 4bd21a818ed3bc8413cfaf4ef2504ae889f4319d Mon Sep 17 00:00:00 2001 From: Isaiah Vita <82135527+isaiahvita@users.noreply.github.com> Date: Mon, 30 Oct 2023 07:58:55 -0700 Subject: [PATCH] Add new types (#463) --- .../software/amazon/smithy/go/codegen/SmithyGoDependency.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/codegen/smithy-go-codegen/src/main/java/software/amazon/smithy/go/codegen/SmithyGoDependency.java b/codegen/smithy-go-codegen/src/main/java/software/amazon/smithy/go/codegen/SmithyGoDependency.java index 2d206e909..3df52d363 100644 --- a/codegen/smithy-go-codegen/src/main/java/software/amazon/smithy/go/codegen/SmithyGoDependency.java +++ b/codegen/smithy-go-codegen/src/main/java/software/amazon/smithy/go/codegen/SmithyGoDependency.java @@ -44,6 +44,9 @@ public final class SmithyGoDependency { public static final GoDependency SYNC = stdlib("sync"); public static final GoDependency PATH = stdlib("path"); public static final GoDependency LOG = stdlib("log"); + public static final GoDependency OS = stdlib("os"); + public static final GoDependency PATH_FILEPATH = stdlib("path/filepath"); + public static final GoDependency REFLECT = stdlib("reflect"); public static final GoDependency SMITHY = smithy(null, "smithy"); public static final GoDependency SMITHY_TRANSPORT = smithy("transport", "smithytransport");