Fix "go get" URLs.

This commit is contained in:
luk3yx 2020-04-27 18:07:01 +12:00
parent 0a06419b4b
commit 7aed3aecf6
3 changed files with 5 additions and 5 deletions

View File

@ -8,11 +8,11 @@ currently WIP and there will probably be bugs.
- [Go](https://golang.org) 1.10+, Go 1.14 or later recommended. - [Go](https://golang.org) 1.10+, Go 1.14 or later recommended.
- [bbolt](https://github.com/etcd-io/bbolt) - [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) - [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) - [yaml](https://gopkg.in/yaml.v2)
- `go get https://gopkg.in/yaml.v2` - `go get gopkg.in/yaml.v2`
## Configuration ## Configuration

View File

@ -4,7 +4,7 @@
# conflicts. # conflicts.
name: Test name: Test
# The address port to bind on. # The address and port to bind on.
# address: "[::]" # address: "[::]"
port: 5000 port: 5000

View File

@ -27,7 +27,7 @@ import (
"errors" "errors"
"lurkcoin" "lurkcoin"
bolt "github.com/etcd-io/bbolt" bolt "go.etcd.io/bbolt"
) )
type boltDatabase struct { type boltDatabase struct {