From 8e7baaf7ee59a304ad657ba5f3749b70b17b3d56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Madrigal=20=F0=9F=90=A7?= Date: Wed, 5 Jun 2024 11:03:46 -0400 Subject: [PATCH] add 'sync/atomic' to the list of Go dependecies --- .../software/amazon/smithy/go/codegen/SmithyGoDependency.java | 1 + 1 file changed, 1 insertion(+) 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 72b3c4519..2a84e249c 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 @@ -43,6 +43,7 @@ public final class SmithyGoDependency { public static final GoDependency ERRORS = stdlib("errors"); public static final GoDependency XML = stdlib("encoding/xml"); public static final GoDependency SYNC = stdlib("sync"); + public static final GoDependency ATOMIC = stdlib("sync/atomic"); public static final GoDependency PATH = stdlib("path"); public static final GoDependency LOG = stdlib("log"); public static final GoDependency OS = stdlib("os");