diff options
author | Mark Haines <mjark@negativecurvature.net> | 2017-02-03 13:52:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-03 13:52:32 +0000 |
commit | 41c6a3737ec2b328f78a5f516e8d8ac954e4e34d (patch) | |
tree | c8acfbc7cebef758294711123894e669ad55586b /.gitignore | |
parent | a78e0cba8edf3c143bda240e67bc3a52f1507edd (diff) |
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.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..a11dc931 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +.*.swp + +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +bin +pkg +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe +*.test +*.prof |