Updated the go.mod to be the proper repo name
This commit is contained in:
@@ -1,3 +1,5 @@
|
|||||||
local:
|
local:
|
||||||
hosts:
|
hosts:
|
||||||
localhost:
|
localhost:
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,10 @@
|
|||||||
module github.com/Dark-Alex-17/dynamodb-benchmarker
|
module github.com/Dark-Alex-17/dynamodb-dax-benchmarker
|
||||||
|
|
||||||
go 1.20
|
go 1.20
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/aws/aws-cdk-go/awscdk/v2 v2.88.0
|
|
||||||
github.com/aws/aws-dax-go v1.2.12
|
github.com/aws/aws-dax-go v1.2.12
|
||||||
github.com/aws/aws-sdk-go v1.44.301
|
github.com/aws/aws-sdk-go v1.44.301
|
||||||
github.com/aws/constructs-go/constructs/v10 v10.2.69
|
|
||||||
github.com/aws/jsii-runtime-go v1.85.0
|
|
||||||
github.com/elastic/go-elasticsearch/v8 v8.8.2
|
github.com/elastic/go-elasticsearch/v8 v8.8.2
|
||||||
github.com/google/uuid v1.3.0
|
github.com/google/uuid v1.3.0
|
||||||
github.com/sirupsen/logrus v1.9.3
|
github.com/sirupsen/logrus v1.9.3
|
||||||
@@ -15,19 +12,9 @@ require (
|
|||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/Masterminds/semver/v3 v3.2.1 // indirect
|
|
||||||
github.com/cdklabs/awscdk-asset-awscli-go/awscliv1/v2 v2.2.200 // indirect
|
|
||||||
github.com/cdklabs/awscdk-asset-kubectl-go/kubectlv20/v2 v2.1.2 // indirect
|
|
||||||
github.com/cdklabs/awscdk-asset-node-proxy-agent-go/nodeproxyagentv5/v2 v2.0.165 // indirect
|
|
||||||
github.com/fatih/color v1.15.0 // indirect
|
|
||||||
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
||||||
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
||||||
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
||||||
github.com/spf13/pflag v1.0.5 // indirect
|
github.com/spf13/pflag v1.0.5 // indirect
|
||||||
github.com/yuin/goldmark v1.4.13 // indirect
|
github.com/stretchr/testify v1.8.4 // indirect
|
||||||
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
|
|
||||||
golang.org/x/mod v0.12.0 // indirect
|
|
||||||
golang.org/x/tools v0.11.0 // indirect
|
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
|||||||
+3
-3
@@ -11,9 +11,9 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/models"
|
"github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/models"
|
||||||
"github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/simulators"
|
"github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/simulators"
|
||||||
"github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/utils"
|
"github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/utils"
|
||||||
"github.com/aws/aws-dax-go/dax"
|
"github.com/aws/aws-dax-go/dax"
|
||||||
"github.com/aws/aws-sdk-go/aws"
|
"github.com/aws/aws-sdk-go/aws"
|
||||||
"github.com/aws/aws-sdk-go/aws/credentials"
|
"github.com/aws/aws-sdk-go/aws/credentials"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package simulators
|
|||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/models"
|
"github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/models"
|
||||||
"github.com/aws/aws-dax-go/dax"
|
"github.com/aws/aws-dax-go/dax"
|
||||||
"github.com/aws/aws-sdk-go/service/dynamodb"
|
"github.com/aws/aws-sdk-go/service/dynamodb"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/models"
|
"github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/models"
|
||||||
"github.com/aws/aws-dax-go/dax"
|
"github.com/aws/aws-dax-go/dax"
|
||||||
"github.com/aws/aws-sdk-go/service/dynamodb"
|
"github.com/aws/aws-sdk-go/service/dynamodb"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package simulators
|
|||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Dark-Alex-17/dynamodb-benchmarker/pkg/models"
|
"github.com/Dark-Alex-17/dynamodb-dax-benchmarker/pkg/models"
|
||||||
"github.com/aws/aws-dax-go/dax"
|
"github.com/aws/aws-dax-go/dax"
|
||||||
"github.com/aws/aws-sdk-go/service/dynamodb"
|
"github.com/aws/aws-sdk-go/service/dynamodb"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
|||||||
Reference in New Issue
Block a user