Skip to content

Commit 792d6f2

Browse files
Dean KarnDean Karn
authored andcommitted
Merge pull request #183 from go-playground/v7-development
update organization from bluesuncorp to go-playground
2 parents 4d7f9e4 + dde87ce commit 792d6f2

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Package validator
22
================
33

4-
[![Join the chat at https://gitter.im/bluesuncorp/validator](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/bluesuncorp/validator?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5-
[![Build Status](https://semaphoreci.com/api/v1/projects/ec20115f-ef1b-4c7d-9393-cc76aba74eb4/517072/badge.svg)](https://semaphoreci.com/joeybloggs/validator)
6-
[![Coverage Status](https://coveralls.io/repos/bluesuncorp/validator/badge.svg?branch=v7&service=github)](https://coveralls.io/github/bluesuncorp/validator?branch=v7)
7-
[![GoDoc](https://godoc.org/gopkg.in/bluesuncorp/validator.v7?status.svg)](https://godoc.org/gopkg.in/bluesuncorp/validator.v7)
4+
[![Join the chat at https://gitter.im/go-playground/validator](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/go-playground/validator?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5+
[![Build Status](https://semaphoreci.com/api/v1/projects/ec20115f-ef1b-4c7d-9393-cc76aba74eb4/490000/badge.svg)](https://semaphoreci.com/joeybloggs/validator)
6+
[![Coverage Status](https://coveralls.io/repos/go-playground/validator/badge.svg?branch=v7&service=github)](https://coveralls.io/github/go-playground/validator?branch=v7)
7+
[![GoDoc](https://godoc.org/gopkg.in/go-playground/validator.v7?status.svg)](https://godoc.org/gopkg.in/go-playground/validator.v7)
88

99
Package validator implements value validations for structs and individual fields based on tags.
1010

@@ -20,20 +20,20 @@ Installation
2020

2121
Use go get.
2222

23-
go get gopkg.in/bluesuncorp/validator.v7
23+
go get gopkg.in/go-playground/validator.v7
2424

2525
or to update
2626

27-
go get -u gopkg.in/bluesuncorp/validator.v7
27+
go get -u gopkg.in/go-playground/validator.v7
2828

2929
Then import the validator package into your own code.
3030

31-
import "gopkg.in/bluesuncorp/validator.v7"
31+
import "gopkg.in/go-playground/validator.v7"
3232

3333
Usage and documentation
3434
------
3535

36-
Please see http://godoc.org/gopkg.in/bluesuncorp/validator.v7 for detailed usage docs.
36+
Please see http://godoc.org/gopkg.in/go-playground/validator.v7 for detailed usage docs.
3737

3838
##### Examples:
3939

@@ -44,7 +44,7 @@ package main
4444
import (
4545
"fmt"
4646

47-
"gopkg.in/bluesuncorp/validator.v7"
47+
"gopkg.in/go-playground/validator.v7"
4848
)
4949

5050
// User contains user information
@@ -143,7 +143,7 @@ import (
143143
"fmt"
144144
"reflect"
145145

146-
"gopkg.in/bluesuncorp/validator.v7"
146+
"gopkg.in/go-playground/validator.v7"
147147
)
148148

149149
// DbBackedUser User struct

examples/custom/custom.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"reflect"
88

9-
"gopkg.in/bluesuncorp/validator.v7"
9+
"gopkg.in/go-playground/validator.v7"
1010
)
1111

1212
// DbBackedUser User struct

examples/simple/simple.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
sql "database/sql/driver"
99

10-
"gopkg.in/bluesuncorp/validator.v7"
10+
"gopkg.in/go-playground/validator.v7"
1111
)
1212

1313
// User contains user information

examples_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package validator_test
33
import (
44
"fmt"
55

6-
"gopkg.in/bluesuncorp/validator.v7"
6+
"gopkg.in/go-playground/validator.v7"
77
)
88

99
func ExampleValidate_new() {

validator_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"testing"
1010
"time"
1111

12-
. "gopkg.in/bluesuncorp/assert.v1"
12+
. "gopkg.in/go-playground/assert.v1"
1313
)
1414

1515
// NOTES:

0 commit comments

Comments
 (0)