fix go.mod so I can keep using my fork for the experimental reseed
This commit is contained in:
4
go.mod
4
go.mod
@@ -3,7 +3,7 @@ module github.com/eyedeekay/i2p-tools-1
|
||||
go 1.13
|
||||
|
||||
require (
|
||||
github.com/MDrollette/i2p-tools v0.0.0-20171015191648-e7d4585361c2
|
||||
github.com/MDrollette/i2p-tools v0.0.0
|
||||
github.com/codegangsta/cli v1.22.1
|
||||
github.com/cretz/bine v0.1.0
|
||||
github.com/gomodule/redigo v2.0.0+incompatible // indirect
|
||||
@@ -17,6 +17,6 @@ require (
|
||||
gopkg.in/throttled/throttled.v2 v2.2.4 // indirect
|
||||
)
|
||||
|
||||
replace github.com/MDrollette/i2p-tools v0.0.0 => github.com/eyedeekay/i2p-tools-1 v0.0.0
|
||||
replace github.com/MDrollette/i2p-tools v0.0.0 => ./
|
||||
|
||||
replace github.com/codegangsta/cli v1.22.1 => github.com/urfave/cli v1.22.1
|
||||
|
||||
4
main.go
4
main.go
@@ -18,10 +18,10 @@ func main() {
|
||||
runtime.GOMAXPROCS(runtime.NumCPU() / 2)
|
||||
|
||||
app := cli.NewApp()
|
||||
app.Name = "i2p-tools"
|
||||
app.Name = "i2p-tools-1"
|
||||
app.Version = "0.1.7"
|
||||
app.Usage = "I2P tools and reseed server"
|
||||
app.Author = "MDrollette"
|
||||
app.Author = "eyedeekay"
|
||||
app.Email = "matt@rows.io"
|
||||
app.Flags = []cli.Flag{}
|
||||
app.Commands = []cli.Command{
|
||||
|
||||
Reference in New Issue
Block a user