Fix example command indentation

This commit is contained in:
Harlow Ward 2019-09-02 08:13:08 -07:00 committed by GitHub
parent dfb0faaa87
commit b87510458e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -349,15 +349,15 @@ There are example Produder and Consumer code in `/cmd` directory. These should h
The examples run locally against [Kinesis Lite](https://github.com/mhart/kinesalite).
$ kinesalite &
$ kinesalite &
Produce data to the stream:
$ cat cmd/producer/users.txt | go run cmd/producer/main.go --stream myStream
$ cat cmd/producer/users.txt | go run cmd/producer/main.go --stream myStream
Consume data from the stream:
$ go run cmd/consumer/main.go --stream myStream
$ go run cmd/consumer/main.go --stream myStream
## Contributing