@@ -2,7 +2,7 @@ Library webhooks
22================
33
44[ ![ Coverage Status] ( https://coveralls.io/repos/go-playground/webhooks/badge.svg?branch=v1&service=github )] ( https://coveralls.io/github/go-playground/webhooks?branch=v1 )
5- [ ![ GoDoc] ( https://godoc.org/gopkg.in/go-playground/webhooks?status.svg )] ( https://godoc.org/gopkg.in/go-playground/webhooks )
5+ [ ![ GoDoc] ( https://godoc.org/gopkg.in/go-playground/webhooks.v1 ?status.svg )] ( https://godoc.org/gopkg.in/go-playground/webhooks.v1 )
66
77Library webhooks allows for easy recieving and parsing of GitHub Webhook Events; more services to come i.e. BitBucket...
88
@@ -20,20 +20,20 @@ Installation
2020
2121Use go get.
2222
23- go get gopkg.in/go-playground/webhooks
23+ go get gopkg.in/go-playground/webhooks.v1
2424
2525or to update
2626
27- go get -u gopkg.in/go-playground/webhooks
27+ go get -u gopkg.in/go-playground/webhooks.v1
2828
2929Then import the validator package into your own code.
3030
31- import "gopkg.in/go-playground/webhooks"
31+ import "gopkg.in/go-playground/webhooks.v1 "
3232
3333Usage and documentation
3434------
3535
36- Please see http://godoc.org/gopkg.in/go-playground/webhooks for detailed usage docs.
36+ Please see http://godoc.org/gopkg.in/go-playground/webhooks.v1 for detailed usage docs.
3737
3838##### Examples:
3939
@@ -45,8 +45,8 @@ import (
4545 " fmt"
4646 " strconv"
4747
48- " gopkg.in/go-playground/webhooks"
49- " gopkg.in/go-playground/webhooks/github"
48+ " gopkg.in/go-playground/webhooks.v1 "
49+ " gopkg.in/go-playground/webhooks.v1 /github"
5050)
5151
5252const (
@@ -101,8 +101,8 @@ import (
101101 " fmt"
102102 " strconv"
103103
104- " gopkg.in/go-playground/webhooks"
105- " gopkg.in/go-playground/webhooks/github"
104+ " gopkg.in/go-playground/webhooks.v1 "
105+ " gopkg.in/go-playground/webhooks.v1 /github"
106106)
107107
108108const (
0 commit comments