Fix "go get" URLs.
This commit is contained in:
parent
0a06419b4b
commit
7aed3aecf6
|
@ -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
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# conflicts.
|
||||
name: Test
|
||||
|
||||
# The address port to bind on.
|
||||
# The address and port to bind on.
|
||||
# address: "[::]"
|
||||
port: 5000
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ import (
|
|||
"errors"
|
||||
"lurkcoin"
|
||||
|
||||
bolt "github.com/etcd-io/bbolt"
|
||||
bolt "go.etcd.io/bbolt"
|
||||
)
|
||||
|
||||
type boltDatabase struct {
|
||||
|
|
Loading…
Reference in New Issue