Skip to content

Commit

Permalink
feat(metering): Marketplace metering service integration (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
renatoaguimaraes authored Sep 24, 2022
1 parent 7c7e55a commit 57bb060
Show file tree
Hide file tree
Showing 6 changed files with 189 additions and 761 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GOLANG_VERSION=1.15
ARG GOLANG_VERSION=1.18
FROM golang:${GOLANG_VERSION} as builder

WORKDIR /aws-quota-provider
Expand Down
32 changes: 26 additions & 6 deletions go.mod
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
)
Loading

0 comments on commit 57bb060

Please sign in to comment.