diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2022-06-25 10:43:53 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2022-06-25 10:43:53 +0100 |
| commit | 85e60b26336e9aa36c234df6f2c19fe49042185f (patch) | |
| tree | 28b100fd688ea6a5dd65707a064744c3c0c2c14e /cmd/go-import-redirect-aws/go.mod | |
| parent | e47a7770f18283405b5fbfddc5c5490eca8080fb (diff) | |
Split the AWS version into its own module
This allows the rather large AWS Lambda SDK to only be fetched if the
command itself is being fetched.
Diffstat (limited to 'cmd/go-import-redirect-aws/go.mod')
| -rw-r--r-- | cmd/go-import-redirect-aws/go.mod | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cmd/go-import-redirect-aws/go.mod b/cmd/go-import-redirect-aws/go.mod new file mode 100644 index 0000000..882bbf8 --- /dev/null +++ b/cmd/go-import-redirect-aws/go.mod @@ -0,0 +1,13 @@ +module go.awhk.org/go-import-redirect/cmd/go-import-redirect-aws + +go 1.18 + +require ( + github.com/aws/aws-lambda-go v1.32.0 + go.awhk.org/go-import-redirect v0.4.0 +) + +require ( + github.com/google/go-cmp v0.5.8 // indirect + go.awhk.org/core v0.0.0-20220618115257-41a47c757dca // indirect +) |
