Skip to content

Commit 3399dd8

Browse files
Dean KarnDean Karn
authored andcommitted
Merge pull request #177 from joeybloggs/v6-development
changed organization from bluesuncorp to go-playground
2 parents d47dc40 + d202c6a commit 3399dd8

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

README.md

Lines changed: 9 additions & 9 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)
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)
55
[![Build Status](https://semaphoreci.com/api/v1/projects/ec20115f-ef1b-4c7d-9393-cc76aba74eb4/487383/badge.svg)](https://semaphoreci.com/joeybloggs/validator)
6-
[![Coverage Status](https://coveralls.io/repos/bluesuncorp/validator/badge.svg?branch=v6)](https://coveralls.io/r/bluesuncorp/validator?branch=v6)
7-
[![GoDoc](https://godoc.org/gopkg.in/bluesuncorp/validator.v6?status.svg)](https://godoc.org/gopkg.in/bluesuncorp/validator.v6)
6+
[![Coverage Status](https://coveralls.io/repos/go-playground/validator/badge.svg?branch=v6)](https://coveralls.io/r/go-playground/validator?branch=v6)
7+
[![GoDoc](https://godoc.org/gopkg.in/go-playground/validator.v6?status.svg)](https://godoc.org/gopkg.in/go-playground/validator.v6)
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.v6
23+
go get gopkg.in/go-playground/validator.v6
2424

2525
or to update
2626

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

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

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

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

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

3838
##### Examples:
3939

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

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

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

146-
"gopkg.in/bluesuncorp/validator.v6"
146+
"gopkg.in/go-playground/validator.v6"
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.v6"
9+
"gopkg.in/go-playground/validator.v6"
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.v6"
10+
"gopkg.in/go-playground/validator.v6"
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.v6"
6+
"gopkg.in/go-playground/validator.v6"
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)