diff options
Diffstat (limited to 'matterhook/matterhook.go')
-rw-r--r-- | matterhook/matterhook.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/matterhook/matterhook.go b/matterhook/matterhook.go index 11453e34..9287baa9 100644 --- a/matterhook/matterhook.go +++ b/matterhook/matterhook.go @@ -6,14 +6,15 @@ import ( "crypto/tls" "encoding/json" "fmt" - "github.com/gorilla/schema" - "github.com/nlopes/slack" "io" "io/ioutil" "log" "net" "net/http" "time" + + "github.com/gorilla/schema" + "github.com/nlopes/slack" ) // OMessage for mattermost incoming webhook. (send to mattermost) |