Skip to content

Commit

Permalink
Add GraphQL mutation to sync credential
Browse files Browse the repository at this point in the history
  • Loading branch information
dangeross committed Oct 4, 2022
1 parent df8648f commit b69a6ac
Show file tree
Hide file tree
Showing 35 changed files with 8,530 additions and 3,711 deletions.
27 changes: 13 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/satimoto/go-api

go 1.17
go 1.18

require (
github.com/99designs/gqlgen v0.17.2
github.com/99designs/gqlgen v0.17.20
github.com/aws/aws-sdk-go v1.44.42
github.com/go-chi/chi v1.5.4
github.com/go-chi/chi/v5 v5.0.7
Expand All @@ -14,7 +14,7 @@ require (
github.com/joho/godotenv v1.4.0
github.com/satimoto/go-datastore v0.3.1-0.20220930074556-db0579f24964
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
github.com/vektah/gqlparser/v2 v2.4.0
github.com/vektah/gqlparser/v2 v2.5.1
)

require (
Expand All @@ -33,7 +33,7 @@ require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/lru v1.0.0 // indirect
github.com/go-errors/errors v1.0.1 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kkdai/bstream v1.0.0 // indirect
Expand All @@ -50,8 +50,8 @@ require (
github.com/tidwall/match v1.0.1 // indirect
github.com/tidwall/pretty v1.0.2 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
)

Expand All @@ -63,11 +63,11 @@ require (
github.com/prometheus/client_golang v1.12.2
github.com/satimoto/go-ferp v0.1.1-0.20220908195810-ff288d2a2a2f
github.com/satimoto/go-lsp v0.2.1-0.20220919200559-6ab40df2ed28
github.com/satimoto/go-ocpi v0.2.1-0.20220923105144-3c3054ca1740
github.com/satimoto/go-ocpi v0.2.1-0.20221004141626-e7ce17baeb36
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71 // indirect
google.golang.org/grpc v1.47.0
google.golang.org/protobuf v1.27.1 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)

require (
Expand All @@ -82,18 +82,17 @@ require (
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
github.com/lightningnetwork/lnd/tlv v1.0.3 // indirect
github.com/lightningnetwork/lnd/tor v1.0.1 // indirect
github.com/matryer/moq v0.2.3 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/nbd-wtf/ln-decodepay v1.5.1 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/urfave/cli/v2 v2.3.0 // indirect
golang.org/x/mod v0.6.0-dev.0.20211013180041-c96bc1413d57 // indirect
golang.org/x/tools v0.1.9 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
github.com/urfave/cli/v2 v2.8.1 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/tools v0.1.12 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

replace git.schwanenlied.me/yawning/bsaes.git => github.com/Yawning/bsaes v0.0.0-20180720073208-c0276d75487e
109 changes: 38 additions & 71 deletions go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit b69a6ac

Please sign in to comment.