-
Notifications
You must be signed in to change notification settings - Fork 415
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1fb767
commit 188268e
Showing
9 changed files
with
941 additions
and
246 deletions.
There are no files selected for viewing
51 changes: 33 additions & 18 deletions
51
_examples/real-world-examples/server-sent-events/server/go.mod
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,28 +1,43 @@ | ||
module main.go | ||
|
||
go 1.12 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/ThreeDotsLabs/watermill v1.1.1 | ||
github.com/ThreeDotsLabs/watermill-http v1.1.3 | ||
github.com/ThreeDotsLabs/watermill-http v1.1.4 | ||
github.com/ThreeDotsLabs/watermill-nats v1.0.5 | ||
github.com/aws/aws-sdk-go v1.35.25 // indirect | ||
github.com/brianvoe/gofakeit/v5 v5.10.1 | ||
github.com/brianvoe/gofakeit/v5 v5.11.2 | ||
github.com/cenkalti/backoff/v3 v3.2.2 // indirect | ||
github.com/go-chi/chi v4.1.2+incompatible | ||
github.com/go-chi/chi/v5 v5.0.4 | ||
github.com/go-chi/render v1.0.1 | ||
github.com/go-sql-driver/mysql v1.5.0 | ||
github.com/golang/snappy v0.0.2 // indirect | ||
github.com/google/uuid v1.1.2 // indirect | ||
github.com/go-sql-driver/mysql v1.6.0 | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.0 // indirect | ||
github.com/klauspost/compress v1.11.2 // indirect | ||
github.com/kr/pretty v0.2.0 // indirect | ||
github.com/nats-io/stan.go v0.5.0 | ||
github.com/xdg/stringprep v1.0.0 // indirect | ||
go.mongodb.org/mongo-driver v1.4.3 | ||
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 // indirect | ||
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 // indirect | ||
golang.org/x/text v0.3.4 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/nats-io/stan.go v0.10.0 | ||
go.mongodb.org/mongo-driver v1.7.3 | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
) | ||
|
||
require ( | ||
github.com/go-chi/chi v4.0.2+incompatible // indirect | ||
github.com/go-stack/stack v1.8.1 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.0 // indirect | ||
github.com/google/go-cmp v0.5.5 // indirect | ||
github.com/lithammer/shortuuid/v3 v3.0.7 // indirect | ||
github.com/nats-io/nats.go v1.13.0 // indirect | ||
github.com/nats-io/nkeys v0.3.0 // indirect | ||
github.com/nats-io/nuid v1.0.1 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.0.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.2 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
) |
154 changes: 91 additions & 63 deletions
154
_examples/real-world-examples/server-sent-events/server/go.sum
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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,19 +1,71 @@ | ||
module github.com/ThreeDotsLabs/watermill/tools/mill | ||
|
||
require ( | ||
cloud.google.com/go v0.38.0 | ||
github.com/Shopify/sarama v1.23.1 | ||
github.com/ThreeDotsLabs/watermill v1.0.0-rc.2 | ||
github.com/ThreeDotsLabs/watermill-amqp v1.0.1 | ||
github.com/ThreeDotsLabs/watermill-googlecloud v1.0.1 | ||
github.com/ThreeDotsLabs/watermill-io v1.0.1 | ||
github.com/ThreeDotsLabs/watermill-kafka/v2 v2.0.0 | ||
cloud.google.com/go v0.97.0 // indirect | ||
cloud.google.com/go/pubsub v1.17.0 | ||
github.com/Shopify/sarama v1.30.0 | ||
github.com/ThreeDotsLabs/watermill v1.2.0-rc.5 | ||
github.com/ThreeDotsLabs/watermill-amqp v1.1.2 | ||
github.com/ThreeDotsLabs/watermill-googlecloud v1.0.9 | ||
github.com/ThreeDotsLabs/watermill-io v1.0.3 | ||
github.com/ThreeDotsLabs/watermill-kafka/v2 v2.2.1 | ||
github.com/cenkalti/backoff/v3 v3.2.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/lithammer/shortuuid/v3 v3.0.7 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/pkg/errors v0.8.1 | ||
github.com/spf13/cobra v0.0.5 | ||
github.com/spf13/pflag v1.0.3 | ||
github.com/spf13/viper v1.4.0 | ||
gopkg.in/yaml.v2 v2.2.2 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/spf13/viper v1.9.0 | ||
github.com/streadway/amqp v1.0.0 // indirect | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect | ||
golang.org/x/net v0.0.0-20211008194852-3b03d305991f // indirect | ||
golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1 // indirect | ||
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect | ||
google.golang.org/api v0.58.0 // indirect | ||
google.golang.org/genproto v0.0.0-20211008145708-270636b82663 // indirect | ||
google.golang.org/grpc v1.41.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
go 1.11 | ||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/eapache/go-resiliency v1.2.0 // indirect | ||
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect | ||
github.com/eapache/queue v1.1.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/googleapis/gax-go/v2 v2.1.1 // indirect | ||
github.com/hashicorp/go-uuid v1.0.2 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jcmturner/aescts/v2 v2.0.0 // indirect | ||
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect | ||
github.com/jcmturner/gofork v1.0.0 // indirect | ||
github.com/jcmturner/gokrb5/v8 v8.4.2 // indirect | ||
github.com/jcmturner/rpc/v2 v2.0.3 // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/mitchellh/mapstructure v1.4.2 // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/pelletier/go-toml v1.9.4 // indirect | ||
github.com/pierrec/lz4 v2.6.1+incompatible // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/cast v1.4.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/ini.v1 v1.63.2 // indirect | ||
) | ||
|
||
go 1.17 |
Oops, something went wrong.