Skip to content

Commit

Permalink
update package name
Browse files Browse the repository at this point in the history
  • Loading branch information
ucarion committed May 8, 2024
1 parent 898e27b commit dbc3566
Show file tree
Hide file tree
Showing 6 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 @@
# conf

[![Go Reference](https://pkg.go.dev/badge/github.com/ucarion/conf.svg)](https://pkg.go.dev/github.com/ucarion/conf)
[![Go Reference](https://pkg.go.dev/badge/github.com/ssoready/conf.svg)](https://pkg.go.dev/github.com/ssoready/conf)

`conf` is a small utility for configuring Golang programs. It addresses three
things the stdlib `flag` package makes a bit difficult:
Expand All @@ -24,7 +24,7 @@ package main
import (
"fmt"

"github.com/ucarion/conf"
"github.com/ssoready/conf"
)

func main() {
Expand Down Expand Up @@ -59,7 +59,7 @@ redacted config {alan }
You can start using `conf` by running:

```bash
go get github.com/ucarion/conf
go get github.com/ssoready/conf
```

## Usage
Expand Down Expand Up @@ -115,7 +115,7 @@ import (
"fmt"
"time"

"github.com/ucarion/conf"
"github.com/ssoready/conf"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/ucarion/conf"
"github.com/ssoready/conf"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/substruct/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"time"

"github.com/ucarion/conf"
"github.com/ssoready/conf"
)

func main() {
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/ucarion/conf
module github.com/ssoready/conf

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion load_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"testing"
"time"

"github.com/ucarion/conf"
"github.com/ssoready/conf"
)

func ExampleLoad() {
Expand Down
2 changes: 1 addition & 1 deletion redact_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"github.com/ucarion/conf"
"github.com/ssoready/conf"
)

func ExampleRedact() {
Expand Down

0 comments on commit dbc3566

Please sign in to comment.