-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(metering): Marketplace metering service integration (#21)
- Loading branch information
1 parent
7c7e55a
commit 57bb060
Showing
6 changed files
with
189 additions
and
761 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,33 @@ | ||
module github.com/ydataai/aws-quota-provider | ||
|
||
go 1.15 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.37.28 | ||
github.com/gin-gonic/gin v1.7.4 | ||
github.com/aws/aws-sdk-go v1.44.104 | ||
github.com/gin-gonic/gin v1.7.7 | ||
github.com/golang/mock v1.5.0 | ||
github.com/google/go-cmp v0.5.5 | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/google/go-cmp v0.5.6 | ||
github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/ydataai/go-core v0.1.0 | ||
github.com/ydataai/go-core v0.9.3 | ||
) | ||
|
||
require ( | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/go-playground/locales v0.13.0 // indirect | ||
github.com/go-playground/universal-translator v0.17.0 // indirect | ||
github.com/go-playground/validator/v10 v10.4.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/json-iterator/go v1.1.11 // indirect | ||
github.com/leodido/go-urn v1.2.0 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
github.com/ugorji/go/codec v1.1.7 // indirect | ||
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect | ||
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.