Skip to content

Commit

Permalink
fix: repo transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
StellarisW committed Jul 7, 2023
1 parent b33ae91 commit 98f0955
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 🚫 go-sensitive

[![build](https://img.shields.io/badge/build-1.01-brightgreen)](https://github.com/StellarisW/go-sensitive)[![go-version](https://img.shields.io/badge/go-~%3D1.19-30dff3?logo=go)](https://github.com/StellarisW/go-sensitive)
[![build](https://img.shields.io/badge/build-1.01-brightgreen)](https://github.com/sgoware/go-sensitive)[![go-version](https://img.shields.io/badge/go-~%3D1.19-30dff3?logo=go)](https://github.com/sgoware/go-sensitive)

English | [中文](README-zh_cn.md)

Expand Down Expand Up @@ -31,7 +31,7 @@ package main

import (
"fmt"
"github.com/StellarisW/go-sensitive"
"github.com/sgoware/go-sensitive"
)

func main() {
Expand Down Expand Up @@ -77,13 +77,13 @@ func main() {
## ✔ Get

```
$ go get -u github.com/StellairsW/go-sensitive
$ go get -u github.com/sgoware/go-sensitive
```

## 📂 Import

```go
import "github.com/StellairsW/go-sensitive"
import "github.com/sgoware/go-sensitive"
```

##
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/StellarisW/go-sensitive
module github.com/sgoware/go-sensitive

go 1.19

Expand Down
4 changes: 2 additions & 2 deletions manager.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package sensitive

import (
"github.com/StellarisW/go-sensitive/filter"
"github.com/StellarisW/go-sensitive/store"
"github.com/sgoware/go-sensitive/filter"
"github.com/sgoware/go-sensitive/store"
"sync"
)

Expand Down
2 changes: 1 addition & 1 deletion manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package sensitive

import (
"fmt"
"github.com/StellarisW/go-sensitive/store"
"github.com/sgoware/go-sensitive/store"
"reflect"
"testing"
"time"
Expand Down
2 changes: 1 addition & 1 deletion options.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package sensitive

import (
"github.com/StellarisW/go-sensitive/store"
"github.com/sgoware/go-sensitive/store"
)

const (
Expand Down

0 comments on commit 98f0955

Please sign in to comment.