mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
41c6a3737e
* 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.
10 lines
112 B
Bash
Executable File
10 lines
112 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -eu
|
|
|
|
golint src/...
|
|
go fmt ./src/...
|
|
go tool vet --shadow ./src
|
|
gocyclo -over 12 src/
|
|
gb test
|