diff --git a/README.md b/README.md index 06e6ab1..84c300d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Go package for atomic file writing -[![Go Reference](https://pkg.go.dev/badge/github.com/natefinch/atomic.svg)](https://pkg.go.dev/github.com/natefinch/atomic) +[![Go Reference](https://pkg.go.dev/badge/github.com/sdassow/atomic.svg)](https://pkg.go.dev/github.com/sdassow/atomic) By default, writing to a file in go (and generally any language) can fail partway through... you then have a partially written file, which probably was @@ -43,7 +43,7 @@ default configuration for the target file. import ( "strings" - "github.com/natefinch/atomic" + "github.com/sdassow/atomic" ) func main() { diff --git a/go.mod b/go.mod index 4b8d336..401ded9 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/natefinch/atomic +module github.com/sdassow/atomic go 1.12