diff --git a/.gitignore b/.gitignore index ed039da..61e96f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ /.idea/ .DS_Store -/oddb-go \ No newline at end of file +/od-database-crawler \ No newline at end of file diff --git a/crawl.go b/crawl.go index 75a2cfb..9046540 100644 --- a/crawl.go +++ b/crawl.go @@ -2,8 +2,8 @@ package main import ( "bytes" - "github.com/terorie/oddb-go/ds/redblackhash" - "github.com/terorie/oddb-go/fasturl" + "github.com/terorie/od-database-crawler/ds/redblackhash" + "github.com/terorie/od-database-crawler/fasturl" "github.com/valyala/fasthttp" "golang.org/x/crypto/blake2b" "golang.org/x/net/html" diff --git a/main.go b/main.go index 44a0f24..17e824d 100644 --- a/main.go +++ b/main.go @@ -3,7 +3,7 @@ package main import ( "context" "github.com/sirupsen/logrus" - "github.com/terorie/oddb-go/fasturl" + "github.com/terorie/od-database-crawler/fasturl" "github.com/urfave/cli" "log" "net/http" @@ -15,7 +15,7 @@ import ( ) var app = cli.App { - Name: "oddb-go", + Name: "od-database-crawler", Usage: "OD-Database Go crawler", Version: "0.2", BashComplete: cli.DefaultAppComplete, diff --git a/model.go b/model.go index 1c6ab4b..150d1e3 100644 --- a/model.go +++ b/model.go @@ -1,8 +1,8 @@ package main import ( - "github.com/terorie/oddb-go/ds/redblackhash" - "github.com/terorie/oddb-go/fasturl" + "github.com/terorie/od-database-crawler/ds/redblackhash" + "github.com/terorie/od-database-crawler/fasturl" "sync" "time" ) diff --git a/scheduler.go b/scheduler.go index 470cb21..1d43ea0 100644 --- a/scheduler.go +++ b/scheduler.go @@ -5,7 +5,7 @@ import ( "encoding/json" "fmt" "github.com/sirupsen/logrus" - "github.com/terorie/oddb-go/fasturl" + "github.com/terorie/od-database-crawler/fasturl" "os" "path" "sync/atomic"