Skip to content

Commit a0c7dfc

Browse files
Change module name (#2)
1 parent c1ef9e2 commit a0c7dfc

15 files changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Use go get.
3131

3232
Then import the validator package into your own code.
3333

34-
import "github.com/beautifulentropy/validator/v10"
34+
import "github.com/letsencrypt/validator/v10"
3535

3636
Error Return Value
3737
-------

_examples/custom-validation/main.go

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

6-
"github.com/beautifulentropy/validator/v10"
6+
"github.com/letsencrypt/validator/v10"
77
)
88

99
// MyStruct ..

_examples/custom/main.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-
"github.com/beautifulentropy/validator/v10"
9+
"github.com/letsencrypt/validator/v10"
1010
)
1111

1212
// DbBackedUser User struct

_examples/dive/main.go

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

6-
"github.com/beautifulentropy/validator/v10"
6+
"github.com/letsencrypt/validator/v10"
77
)
88

99
// Test ...

_examples/gin-upgrading-overriding/v8_to_v9.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"reflect"
55
"sync"
66

7-
"github.com/beautifulentropy/validator/v10"
87
"github.com/gin-gonic/gin/binding"
8+
"github.com/letsencrypt/validator/v10"
99
)
1010

1111
type defaultValidator struct {

_examples/map-validation/main.go

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

6-
"github.com/beautifulentropy/validator/v10"
6+
"github.com/letsencrypt/validator/v10"
77
)
88

99
var validate *validator.Validate

_examples/simple/main.go

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

6-
"github.com/beautifulentropy/validator/v10"
6+
"github.com/letsencrypt/validator/v10"
77
)
88

99
// User contains user information

_examples/struct-level/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"reflect"
66
"strings"
77

8-
"github.com/beautifulentropy/validator/v10"
8+
"github.com/letsencrypt/validator/v10"
99
)
1010

1111
// User contains user information

_examples/struct-map-rules-validation/main.go

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

6-
"github.com/beautifulentropy/validator/v10"
6+
"github.com/letsencrypt/validator/v10"
77
)
88

99
type Data struct {

_examples/translations/main.go

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

6-
"github.com/beautifulentropy/validator/v10"
76
"github.com/go-playground/locales/en"
87
ut "github.com/go-playground/universal-translator"
98
en_translations "github.com/go-playground/validator/v10/translations/en"
9+
"github.com/letsencrypt/validator/v10"
1010
)
1111

1212
// User contains user information

0 commit comments

Comments
 (0)