From 7aed3aecf6659255288af95881a5704236fb20d5 Mon Sep 17 00:00:00 2001 From: luk3yx Date: Mon, 27 Apr 2020 18:07:01 +1200 Subject: [PATCH] Fix "go get" URLs. --- README.md | 6 +++--- config.yaml | 2 +- lurkcoin/databases/bbolt.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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 {