A kafkaesque room event consumer for the roomserver. (#1)

* A kafkaesque room event consumer for the roomserver.

Implement the main input loop for the roomserver.

It will receive events from a kafkaesque event source and track
where it is in the stream.

It currently does nothing with the events it consumes.
This commit is contained in:
Mark Haines 2017-02-03 13:52:32 +00:00 committed by GitHub
parent a78e0cba8e
commit 41c6a3737e
9 changed files with 341 additions and 0 deletions

9
hooks/pre-commit Executable file
View file

@ -0,0 +1,9 @@
#! /bin/bash
set -eu
golint src/...
go fmt ./src/...
go tool vet --shadow ./src
gocyclo -over 12 src/
gb test