mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-11 20:31:08 +01: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.
9 lines
112 B
Bash
Executable file
9 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
|