Skip to content

Commit a567e5c

Browse files
authored
chore: migrate to a vanity import path (#2)
1 parent 01e0152 commit a567e5c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# check
22

33
[![ci](https://github.com/go-simpler/check/actions/workflows/go.yml/badge.svg)](https://github.com/go-simpler/check/actions/workflows/go.yml)
4-
[![docs](https://pkg.go.dev/badge/github.com/go-simpler/check.svg)](https://pkg.go.dev/github.com/go-simpler/check)
5-
[![report](https://goreportcard.com/badge/github.com/go-simpler/check)](https://goreportcard.com/report/github.com/go-simpler/check)
4+
[![docs](https://pkg.go.dev/badge/go-simpler.org/check.svg)](https://pkg.go.dev/go-simpler.org/check)
5+
[![report](https://goreportcard.com/badge/go-simpler.org/check)](https://goreportcard.com/report/go-simpler.org/check)
66
[![codecov](https://codecov.io/gh/go-simpler/check/branch/main/graph/badge.svg)](https://codecov.io/gh/go-simpler/check)
77

88
Convenience helpers to perform validations of any kind
99

1010
## 📦 Install
1111

1212
```shell
13-
go get github.com/go-simpler/check
13+
go get go-simpler.org/check
1414
```
1515

1616
## 📋 Usage

check_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55
"testing"
66

7-
"github.com/go-simpler/check"
7+
"go-simpler.org/check"
88
)
99

1010
func TestCheck(t *testing.T) {

example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55
"fmt"
66

7-
"github.com/go-simpler/check"
7+
"go-simpler.org/check"
88
)
99

1010
var user = struct {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/go-simpler/check
1+
module go-simpler.org/check
22

33
go 1.19

0 commit comments

Comments
 (0)