Fix some bad URL bad copy/replace
This commit is contained in:
@@ -2,7 +2,7 @@ Library webhooks
|
||||
================
|
||||
|
||||
[](https://coveralls.io/github/go-playground/webhooks?branch=v1)
|
||||
[](https://godoc.org/gopkg.in/go-playground/webhooks)
|
||||
[](https://godoc.org/gopkg.in/go-playground/webhooks.v1)
|
||||
|
||||
Library webhooks allows for easy recieving and parsing of GitHub Webhook Events; more services to come i.e. BitBucket...
|
||||
|
||||
@@ -20,20 +20,20 @@ Installation
|
||||
|
||||
Use go get.
|
||||
|
||||
go get gopkg.in/go-playground/webhooks
|
||||
go get gopkg.in/go-playground/webhooks.v1
|
||||
|
||||
or to update
|
||||
|
||||
go get -u gopkg.in/go-playground/webhooks
|
||||
go get -u gopkg.in/go-playground/webhooks.v1
|
||||
|
||||
Then import the validator package into your own code.
|
||||
|
||||
import "gopkg.in/go-playground/webhooks"
|
||||
import "gopkg.in/go-playground/webhooks.v1"
|
||||
|
||||
Usage and documentation
|
||||
------
|
||||
|
||||
Please see http://godoc.org/gopkg.in/go-playground/webhooks for detailed usage docs.
|
||||
Please see http://godoc.org/gopkg.in/go-playground/webhooks.v1 for detailed usage docs.
|
||||
|
||||
##### Examples:
|
||||
|
||||
@@ -45,8 +45,8 @@ import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
|
||||
"gopkg.in/go-playground/webhooks"
|
||||
"gopkg.in/go-playground/webhooks/github"
|
||||
"gopkg.in/go-playground/webhooks.v1"
|
||||
"gopkg.in/go-playground/webhooks.v1/github"
|
||||
)
|
||||
|
||||
const (
|
||||
@@ -101,8 +101,8 @@ import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
|
||||
"gopkg.in/go-playground/webhooks"
|
||||
"gopkg.in/go-playground/webhooks/github"
|
||||
"gopkg.in/go-playground/webhooks.v1"
|
||||
"gopkg.in/go-playground/webhooks.v1/github"
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
Reference in New Issue
Block a user