From b4e6cbd61c9bd6703aba9eb6deceeebfc827c422 Mon Sep 17 00:00:00 2001 From: Andrew Burian Date: Mon, 26 Nov 2018 16:16:38 -0800 Subject: [PATCH] Setup proper v2 module --- README.md | 3 +++ go.mod | 1 + 2 files changed, 4 insertions(+) create mode 100644 go.mod diff --git a/README.md b/README.md index 90c25ec..38319c7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # EventSource Swiss Army Knife for SSE in Golang +## Semantic Versioning +This library is module-ready and versioned symantically. `master` branch tracks the latest unstable work, and the `vN` branches track stable releases. + # Up and running in 30 seconds So you want to publish events to client that connect to your server? ```go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..db37550 --- /dev/null +++ b/go.mod @@ -0,0 +1 @@ +module github.com/AndrewBurian/eventsource/v2