Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ run/local-dynamo:

.PHONY: run/tests
run/tests:
go test ./... -cover
go test ./... -cover -race

.PHONY: run/lint
run/lint:
Expand Down
42 changes: 24 additions & 18 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,45 +1,51 @@
module github.com/jdpx/mind-hub-api

go 1.15
go 1.16

require (
github.com/99designs/gqlgen v0.13.0
github.com/aws/aws-lambda-go v1.18.0
github.com/aws/aws-sdk-go v1.35.19
github.com/aws/aws-sdk-go-v2 v1.0.0
github.com/aws/aws-sdk-go-v2/config v1.0.0
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.0.0
github.com/aws/aws-sdk-go-v2/feature/dynamodb/expression v1.0.0
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.0.0
github.com/awslabs/aws-lambda-go-api-proxy v0.8.1
github.com/agnivade/levenshtein v1.1.0 // indirect
github.com/aws/aws-lambda-go v1.23.0
github.com/aws/aws-sdk-go-v2 v1.4.0
github.com/aws/aws-sdk-go-v2/config v1.1.7
github.com/aws/aws-sdk-go-v2/feature/dynamodb/attributevalue v1.0.7
github.com/aws/aws-sdk-go-v2/feature/dynamodb/expression v1.0.7
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.2.3
github.com/awslabs/aws-lambda-go-api-proxy v0.10.0
github.com/corpix/uarand v0.1.1 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gin-contrib/cors v1.3.1
github.com/gin-gonic/gin v1.6.3
github.com/gin-gonic/gin v1.7.1
github.com/gofrs/uuid v3.3.0+incompatible
github.com/golang/mock v1.4.4
github.com/golang/protobuf v1.4.3 // indirect
github.com/google/uuid v1.1.2
github.com/gorilla/websocket v1.4.2
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428
github.com/json-iterator/go v1.1.10 // indirect
github.com/kelseyhightower/envconfig v1.4.0
github.com/labstack/gommon v0.3.0
github.com/machinebox/graphql v0.2.2
github.com/matryer/is v1.4.0 // indirect
github.com/mitchellh/mapstructure v1.1.2
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/matryer/moq v0.2.1 // indirect
github.com/mitchellh/mapstructure v1.4.1
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/onsi/ginkgo v1.14.1 // indirect
github.com/onsi/gomega v1.10.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/segmentio/ksuid v1.0.3
github.com/sirupsen/logrus v1.7.0
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.6.1
github.com/urfave/cli/v2 v2.3.0 // indirect
github.com/vektah/dataloaden v0.3.0 // indirect
github.com/vektah/gqlparser/v2 v2.1.0
golang.org/x/net v0.0.0-20200625001655-4c5254603344 // indirect
golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/net v0.0.0-20201021035429-f5854403a974 // indirect
golang.org/x/sys v0.0.0-20210507161434-a76c4d0a0096 // indirect
golang.org/x/text v0.3.4 // indirect
golang.org/x/tools v0.1.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
353 changes: 298 additions & 55 deletions go.sum

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions gqlgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ models:
resolver: true
note:
resolver: true
timemaps:
resolver: true
Step:
fields:
progress:
Expand Down
4 changes: 2 additions & 2 deletions pkg/graphcms/mocks/resolvers.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading