Skip to content

Commit b57a0b9

Browse files
authored
chore: migrate to go-simpler (#1)
1 parent 5f39d8f commit b57a0b9

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 junk1tm
3+
Copyright (c) 2022 go-simpler
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# check
22

3-
[![ci](https://github.com/junk1tm/check/actions/workflows/go.yml/badge.svg)](https://github.com/junk1tm/check/actions/workflows/go.yml)
4-
[![docs](https://pkg.go.dev/badge/github.com/junk1tm/check.svg)](https://pkg.go.dev/github.com/junk1tm/check)
5-
[![report](https://goreportcard.com/badge/github.com/junk1tm/check)](https://goreportcard.com/report/github.com/junk1tm/check)
6-
[![codecov](https://codecov.io/gh/junk1tm/check/branch/main/graph/badge.svg)](https://codecov.io/gh/junk1tm/check)
3+
[![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)
6+
[![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/junk1tm/check
13+
go get github.com/go-simpler/check
1414
```
1515

1616
## 📋 Usage

check_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55
"testing"
66

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

1010
func TestCheck(t *testing.T) {

example_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55
"fmt"
66

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

1010
var user = struct {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/junk1tm/check
1+
module github.com/go-simpler/check
22

33
go 1.19

0 commit comments

Comments
 (0)