@ -1,10 +1,10 @@
Package validator
Package validator
================
================
[![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)
[![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)
[![Build Status ](https://semaphoreci.com/api/v1/projects/ec20115f-ef1b-4c7d-9393-cc76aba74eb4/487383/badge.svg )](https://semaphoreci.com/joeybloggs/validator)
[![Build Status ](https://semaphoreci.com/api/v1/projects/ec20115f-ef1b-4c7d-9393-cc76aba74eb4/487383/badge.svg )](https://semaphoreci.com/joeybloggs/validator)
[![Coverage Status ](https://coveralls.io/repos/bluesuncorp/validator/badge.svg?branch=v6 )](https://coveralls.io/r/bluesuncorp /validator?branch=v6)
[![Coverage Status ](https://coveralls.io/repos/go-playground/validator/badge.svg?branch=v6 )](https://coveralls.io/r/go-playground /validator?branch=v6)
[![GoDoc ](https://godoc.org/gopkg.in/bluesuncorp/validator.v6?status.svg )](https://godoc.org/gopkg.in/bluesuncorp /validator.v6)
[![GoDoc ](https://godoc.org/gopkg.in/go-playground/validator.v6?status.svg )](https://godoc.org/gopkg.in/go-playground /validator.v6)
Package validator implements value validations for structs and individual fields based on tags.
Package validator implements value validations for structs and individual fields based on tags.
@ -20,20 +20,20 @@ Installation
Use go get.
Use go get.
go get gopkg.in/bluesuncorp /validator.v6
go get gopkg.in/go-playground /validator.v6
or to update
or to update
go get -u gopkg.in/bluesuncorp /validator.v6
go get -u gopkg.in/go-playground /validator.v6
Then import the validator package into your own code.
Then import the validator package into your own code.
import "gopkg.in/bluesuncorp /validator.v6"
import "gopkg.in/go-playground /validator.v6"
Usage and documentation
Usage and documentation
------
------
Please see http://godoc.org/gopkg.in/bluesuncorp /validator.v6 for detailed usage docs.
Please see http://godoc.org/gopkg.in/go-playground /validator.v6 for detailed usage docs.
##### Examples:
##### Examples:
@ -44,7 +44,7 @@ package main
import (
import (
"fmt"
"fmt"
"gopkg.in/bluesuncorp /validator.v6"
"gopkg.in/go-playground /validator.v6"
)
)
// User contains user information
// User contains user information
@ -143,7 +143,7 @@ import (
"fmt"
"fmt"
"reflect"
"reflect"
"gopkg.in/bluesuncorp /validator.v6"
"gopkg.in/go-playground /validator.v6"
)
)
// DbBackedUser User struct
// DbBackedUser User struct