diff --git a/README.md b/README.md index fbcae7f..10717ce 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ currently WIP and there will probably be bugs. - [Go](https://golang.org) 1.10+, Go 1.14 or later recommended. - [bbolt](https://github.com/etcd-io/bbolt) - - `go get https://github.com/etcd-io/bbolt` + - `go get go.etcd.io/bbolt` - [httprouter](https://github.com/julienschmidt/httprouter) - - `go get https://github.com/julienschmidt/httprouter` + - `go get github.com/julienschmidt/httprouter` - [yaml](https://gopkg.in/yaml.v2) - - `go get https://gopkg.in/yaml.v2` + - `go get gopkg.in/yaml.v2` ## Configuration diff --git a/config.yaml b/config.yaml index ade9ac8..dcfa644 100644 --- a/config.yaml +++ b/config.yaml @@ -4,7 +4,7 @@ # conflicts. name: Test -# The address port to bind on. +# The address and port to bind on. # address: "[::]" port: 5000 diff --git a/lurkcoin/databases/bbolt.go b/lurkcoin/databases/bbolt.go index 74c627f..86cafd6 100644 --- a/lurkcoin/databases/bbolt.go +++ b/lurkcoin/databases/bbolt.go @@ -27,7 +27,7 @@ import ( "errors" "lurkcoin" - bolt "github.com/etcd-io/bbolt" + bolt "go.etcd.io/bbolt" ) type boltDatabase struct {