From 6f79af997f781a9debef418c88343614b99a0df5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alo=C3=AFs=20Micard?= Date: Wed, 13 Jan 2021 11:44:46 +0100 Subject: [PATCH] s/creekorful/darkspot(-org)/ --- .goreleaser.yaml | 30 ++++++++++++------------ CHANGELOG.md | 4 ++-- README.md | 2 +- cmd/bs-blacklister/bs-blacklister.go | 4 ++-- cmd/bs-configapi/bs-configapi.go | 4 ++-- cmd/bs-crawler/bs-crawler.go | 4 ++-- cmd/bs-indexer/bs-indexer.go | 4 ++-- cmd/bs-scheduler/bs-scheduler.go | 4 ++-- deployments/docker/docker-compose.yml | 12 +++++----- deployments/k8s/blacklister.yaml | 2 +- deployments/k8s/configapi.yaml | 2 +- deployments/k8s/crawler.yaml | 2 +- deployments/k8s/indexer-es.yaml | 2 +- deployments/k8s/scheduler.yaml | 2 +- go.mod | 2 +- internal/blacklister/blacklister.go | 10 ++++---- internal/blacklister/blacklister_test.go | 20 ++++++++-------- internal/configapi/client/client.go | 2 +- internal/configapi/client/client_test.go | 4 ++-- internal/configapi/configapi.go | 6 ++--- internal/configapi/configapi_test.go | 14 +++++------ internal/constraint/hostname.go | 2 +- internal/constraint/hostname_test.go | 4 ++-- internal/crawler/crawler.go | 12 +++++----- internal/crawler/crawler_test.go | 20 ++++++++-------- internal/indexer/index/elastic_test.go | 2 +- internal/indexer/indexer.go | 10 ++++---- internal/indexer/indexer_test.go | 18 +++++++------- internal/process/process.go | 10 ++++---- internal/scheduler/scheduler.go | 12 +++++----- internal/scheduler/scheduler_test.go | 18 +++++++------- internal/test/process.go | 4 ++-- 32 files changed, 124 insertions(+), 124 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index bfa5c31..fb9cdd0 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -51,41 +51,41 @@ dockers: - goos: linux goarch: amd64 image_templates: - - "creekorful/bs-blacklister:latest" - - "creekorful/bs-blacklister:{{ replace .Tag \"v\" \"\" }}" - - "creekorful/bs-blacklister:{{ .Major }}" + - "darkspot/bs-blacklister:latest" + - "darkspot/bs-blacklister:{{ replace .Tag \"v\" \"\" }}" + - "darkspot/bs-blacklister:{{ .Major }}" skip_push: false dockerfile: build/docker/Dockerfile.blacklister - goos: linux goarch: amd64 image_templates: - - "creekorful/bs-configapi:latest" - - "creekorful/bs-configapi:{{ replace .Tag \"v\" \"\" }}" - - "creekorful/bs-configapi:{{ .Major }}" + - "darkspot/bs-configapi:latest" + - "darkspot/bs-configapi:{{ replace .Tag \"v\" \"\" }}" + - "darkspot/bs-configapi:{{ .Major }}" skip_push: false dockerfile: build/docker/Dockerfile.configapi - goos: linux goarch: amd64 image_templates: - - "creekorful/bs-crawler:latest" - - "creekorful/bs-crawler:{{ replace .Tag \"v\" \"\" }}" - - "creekorful/bs-crawler:{{ .Major }}" + - "darkspot/bs-crawler:latest" + - "darkspot/bs-crawler:{{ replace .Tag \"v\" \"\" }}" + - "darkspot/bs-crawler:{{ .Major }}" skip_push: false dockerfile: build/docker/Dockerfile.crawler - goos: linux goarch: amd64 image_templates: - - "creekorful/bs-indexer:latest" - - "creekorful/bs-indexer:{{ replace .Tag \"v\" \"\" }}" - - "creekorful/bs-indexer:{{ .Major }}" + - "darkspot/bs-indexer:latest" + - "darkspot/bs-indexer:{{ replace .Tag \"v\" \"\" }}" + - "darkspot/bs-indexer:{{ .Major }}" skip_push: false dockerfile: build/docker/Dockerfile.indexer - goos: linux goarch: amd64 image_templates: - - "creekorful/bs-scheduler:latest" - - "creekorful/bs-scheduler:{{ replace .Tag \"v\" \"\" }}" - - "creekorful/bs-scheduler:{{ .Major }}" + - "darkspot/bs-scheduler:latest" + - "darkspot/bs-scheduler:{{ replace .Tag \"v\" \"\" }}" + - "darkspot/bs-scheduler:{{ .Major }}" skip_push: false dockerfile: build/docker/Dockerfile.scheduler checksum: diff --git a/CHANGELOG.md b/CHANGELOG.md index 181ba3e..ae3766a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,6 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Initial stable release candidate. -[unreleased]: https://github.com/creekorful/bathyscaphe/compare/v1.0.0-rc1...HEAD +[unreleased]: https://github.com/darkspot-org/bathyscaphe/compare/v1.0.0-rc1...HEAD -[v1.0.0-rc1]: https://github.com/creekorful/bathyscaphe/releases/tag/v1.0.0-rc1 \ No newline at end of file +[v1.0.0-rc1]: https://github.com/darkspot-org/bathyscaphe/releases/tag/v1.0.0-rc1 \ No newline at end of file diff --git a/README.md b/README.md index 8b50bb3..1dae372 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Bathyscaphe dark web crawler -![CI](https://github.com/creekorful/bathyscaphe/workflows/CI/badge.svg) +![CI](https://github.com/darkspot-org/bathyscaphe/workflows/CI/badge.svg) Bathyscaphe is a Go written, fast, highly configurable, cloud-native dark web crawler. diff --git a/cmd/bs-blacklister/bs-blacklister.go b/cmd/bs-blacklister/bs-blacklister.go index 6a41767..866bda3 100644 --- a/cmd/bs-blacklister/bs-blacklister.go +++ b/cmd/bs-blacklister/bs-blacklister.go @@ -1,8 +1,8 @@ package main import ( - "github.com/creekorful/bathyscaphe/internal/blacklister" - "github.com/creekorful/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/blacklister" + "github.com/darkspot-org/bathyscaphe/internal/process" "os" ) diff --git a/cmd/bs-configapi/bs-configapi.go b/cmd/bs-configapi/bs-configapi.go index 5b689dc..bbefc8a 100644 --- a/cmd/bs-configapi/bs-configapi.go +++ b/cmd/bs-configapi/bs-configapi.go @@ -1,8 +1,8 @@ package main import ( - "github.com/creekorful/bathyscaphe/internal/configapi" - "github.com/creekorful/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/configapi" + "github.com/darkspot-org/bathyscaphe/internal/process" "os" ) diff --git a/cmd/bs-crawler/bs-crawler.go b/cmd/bs-crawler/bs-crawler.go index 30b1a54..8b2228d 100644 --- a/cmd/bs-crawler/bs-crawler.go +++ b/cmd/bs-crawler/bs-crawler.go @@ -1,8 +1,8 @@ package main import ( - "github.com/creekorful/bathyscaphe/internal/crawler" - "github.com/creekorful/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/crawler" + "github.com/darkspot-org/bathyscaphe/internal/process" "os" ) diff --git a/cmd/bs-indexer/bs-indexer.go b/cmd/bs-indexer/bs-indexer.go index fdd32c2..c80e9ca 100644 --- a/cmd/bs-indexer/bs-indexer.go +++ b/cmd/bs-indexer/bs-indexer.go @@ -1,8 +1,8 @@ package main import ( - "github.com/creekorful/bathyscaphe/internal/indexer" - "github.com/creekorful/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/indexer" + "github.com/darkspot-org/bathyscaphe/internal/process" "os" ) diff --git a/cmd/bs-scheduler/bs-scheduler.go b/cmd/bs-scheduler/bs-scheduler.go index 25ef949..da48ecc 100644 --- a/cmd/bs-scheduler/bs-scheduler.go +++ b/cmd/bs-scheduler/bs-scheduler.go @@ -1,8 +1,8 @@ package main import ( - "github.com/creekorful/bathyscaphe/internal/process" - "github.com/creekorful/bathyscaphe/internal/scheduler" + "github.com/darkspot-org/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/scheduler" "os" ) diff --git a/deployments/docker/docker-compose.yml b/deployments/docker/docker-compose.yml index 2ab0a66..3228f35 100644 --- a/deployments/docker/docker-compose.yml +++ b/deployments/docker/docker-compose.yml @@ -29,7 +29,7 @@ services: volumes: - redisdata:/data crawler: - image: creekorful/bs-crawler:latest + image: darkspot/bs-crawler:latest command: > --log-level debug --event-srv amqp://guest:guest@rabbitmq:5672 @@ -41,7 +41,7 @@ services: - torproxy - configapi scheduler: - image: creekorful/bs-scheduler:latest + image: darkspot/bs-scheduler:latest command: > --log-level debug --event-srv amqp://guest:guest@rabbitmq:5672 @@ -54,7 +54,7 @@ services: - configapi - redis indexer-local: - image: creekorful/bs-indexer:latest + image: darkspot/bs-indexer:latest command: > --log-level debug --event-srv amqp://guest:guest@rabbitmq:5672 @@ -68,7 +68,7 @@ services: - rabbitmq - configapi indexer-es: - image: creekorful/bs-indexer:latest + image: darkspot/bs-indexer:latest command: > --log-level debug --event-srv amqp://guest:guest@rabbitmq:5672 @@ -82,7 +82,7 @@ services: - elasticsearch - configapi configapi: - image: creekorful/bs-configapi:latest + image: darkspot/bs-configapi:latest command: > --log-level debug --event-srv amqp://guest:guest@rabbitmq:5672 @@ -98,7 +98,7 @@ services: ports: - 15006:8080 blacklister: - image: creekorful/bs-blacklister:latest + image: darkspot/bs-blacklister:latest command: > --log-level debug --event-srv amqp://guest:guest@rabbitmq:5672 diff --git a/deployments/k8s/blacklister.yaml b/deployments/k8s/blacklister.yaml index 6c657c6..f2238d2 100644 --- a/deployments/k8s/blacklister.yaml +++ b/deployments/k8s/blacklister.yaml @@ -16,7 +16,7 @@ spec: spec: containers: - name: blacklister - image: creekorful/bs-blacklister:latest + image: darkspot/bs-blacklister:latest args: - --log-level - debug diff --git a/deployments/k8s/configapi.yaml b/deployments/k8s/configapi.yaml index 7790711..9388f51 100644 --- a/deployments/k8s/configapi.yaml +++ b/deployments/k8s/configapi.yaml @@ -16,7 +16,7 @@ spec: spec: containers: - name: configapi - image: creekorful/bs-configapi:latest + image: darkspot/bs-configapi:latest args: - --log-level - debug diff --git a/deployments/k8s/crawler.yaml b/deployments/k8s/crawler.yaml index 403aed8..bf44078 100644 --- a/deployments/k8s/crawler.yaml +++ b/deployments/k8s/crawler.yaml @@ -16,7 +16,7 @@ spec: spec: containers: - name: crawler - image: creekorful/bs-crawler:latest + image: darkspot/bs-crawler:latest args: - --log-level - debug diff --git a/deployments/k8s/indexer-es.yaml b/deployments/k8s/indexer-es.yaml index de330d7..987b548 100644 --- a/deployments/k8s/indexer-es.yaml +++ b/deployments/k8s/indexer-es.yaml @@ -16,7 +16,7 @@ spec: spec: containers: - name: indexer - image: creekorful/bs-indexer:latest + image: darkspot/bs-indexer:latest args: - --log-level - debug diff --git a/deployments/k8s/scheduler.yaml b/deployments/k8s/scheduler.yaml index d518ed5..ce2eee8 100644 --- a/deployments/k8s/scheduler.yaml +++ b/deployments/k8s/scheduler.yaml @@ -16,7 +16,7 @@ spec: spec: containers: - name: scheduler - image: creekorful/bs-scheduler:latest + image: darkspot/bs-scheduler:latest args: - --log-level - debug diff --git a/go.mod b/go.mod index fac6cc3..18209ed 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/creekorful/bathyscaphe +module github.com/darkspot-org/bathyscaphe go 1.14 diff --git a/internal/blacklister/blacklister.go b/internal/blacklister/blacklister.go index 0863a08..b84ef8f 100644 --- a/internal/blacklister/blacklister.go +++ b/internal/blacklister/blacklister.go @@ -2,11 +2,11 @@ package blacklister import ( "fmt" - "github.com/creekorful/bathyscaphe/internal/cache" - configapi "github.com/creekorful/bathyscaphe/internal/configapi/client" - "github.com/creekorful/bathyscaphe/internal/event" - chttp "github.com/creekorful/bathyscaphe/internal/http" - "github.com/creekorful/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/cache" + configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client" + "github.com/darkspot-org/bathyscaphe/internal/event" + chttp "github.com/darkspot-org/bathyscaphe/internal/http" + "github.com/darkspot-org/bathyscaphe/internal/process" "github.com/rs/zerolog/log" "github.com/urfave/cli/v2" "net/http" diff --git a/internal/blacklister/blacklister_test.go b/internal/blacklister/blacklister_test.go index 5ddcf4c..0816c64 100644 --- a/internal/blacklister/blacklister_test.go +++ b/internal/blacklister/blacklister_test.go @@ -2,16 +2,16 @@ package blacklister import ( "errors" - "github.com/creekorful/bathyscaphe/internal/cache_mock" - configapi "github.com/creekorful/bathyscaphe/internal/configapi/client" - "github.com/creekorful/bathyscaphe/internal/configapi/client_mock" - "github.com/creekorful/bathyscaphe/internal/event" - "github.com/creekorful/bathyscaphe/internal/event_mock" - "github.com/creekorful/bathyscaphe/internal/http" - "github.com/creekorful/bathyscaphe/internal/http_mock" - "github.com/creekorful/bathyscaphe/internal/process" - "github.com/creekorful/bathyscaphe/internal/process_mock" - "github.com/creekorful/bathyscaphe/internal/test" + "github.com/darkspot-org/bathyscaphe/internal/cache_mock" + configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client" + "github.com/darkspot-org/bathyscaphe/internal/configapi/client_mock" + "github.com/darkspot-org/bathyscaphe/internal/event" + "github.com/darkspot-org/bathyscaphe/internal/event_mock" + "github.com/darkspot-org/bathyscaphe/internal/http" + "github.com/darkspot-org/bathyscaphe/internal/http_mock" + "github.com/darkspot-org/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/process_mock" + "github.com/darkspot-org/bathyscaphe/internal/test" "github.com/golang/mock/gomock" "testing" "time" diff --git a/internal/configapi/client/client.go b/internal/configapi/client/client.go index e9b322a..4bcec83 100644 --- a/internal/configapi/client/client.go +++ b/internal/configapi/client/client.go @@ -6,7 +6,7 @@ import ( "bytes" "encoding/json" "fmt" - "github.com/creekorful/bathyscaphe/internal/event" + "github.com/darkspot-org/bathyscaphe/internal/event" "github.com/rs/zerolog/log" "io/ioutil" "net/http" diff --git a/internal/configapi/client/client_test.go b/internal/configapi/client/client_test.go index 4ebd03d..624030c 100644 --- a/internal/configapi/client/client_test.go +++ b/internal/configapi/client/client_test.go @@ -1,8 +1,8 @@ package client import ( - "github.com/creekorful/bathyscaphe/internal/event" - "github.com/creekorful/bathyscaphe/internal/event_mock" + "github.com/darkspot-org/bathyscaphe/internal/event" + "github.com/darkspot-org/bathyscaphe/internal/event_mock" "github.com/golang/mock/gomock" "sync" "testing" diff --git a/internal/configapi/configapi.go b/internal/configapi/configapi.go index a4407ce..99cf281 100644 --- a/internal/configapi/configapi.go +++ b/internal/configapi/configapi.go @@ -2,9 +2,9 @@ package configapi import ( "fmt" - "github.com/creekorful/bathyscaphe/internal/cache" - "github.com/creekorful/bathyscaphe/internal/event" - "github.com/creekorful/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/cache" + "github.com/darkspot-org/bathyscaphe/internal/event" + "github.com/darkspot-org/bathyscaphe/internal/process" "github.com/gorilla/mux" "github.com/rs/zerolog/log" "github.com/urfave/cli/v2" diff --git a/internal/configapi/configapi_test.go b/internal/configapi/configapi_test.go index 7e10d09..b48c9a4 100644 --- a/internal/configapi/configapi_test.go +++ b/internal/configapi/configapi_test.go @@ -1,13 +1,13 @@ package configapi import ( - "github.com/creekorful/bathyscaphe/internal/cache" - "github.com/creekorful/bathyscaphe/internal/cache_mock" - "github.com/creekorful/bathyscaphe/internal/event" - "github.com/creekorful/bathyscaphe/internal/event_mock" - "github.com/creekorful/bathyscaphe/internal/process" - "github.com/creekorful/bathyscaphe/internal/process_mock" - "github.com/creekorful/bathyscaphe/internal/test" + "github.com/darkspot-org/bathyscaphe/internal/cache" + "github.com/darkspot-org/bathyscaphe/internal/cache_mock" + "github.com/darkspot-org/bathyscaphe/internal/event" + "github.com/darkspot-org/bathyscaphe/internal/event_mock" + "github.com/darkspot-org/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/process_mock" + "github.com/darkspot-org/bathyscaphe/internal/test" "github.com/golang/mock/gomock" "github.com/gorilla/mux" "io/ioutil" diff --git a/internal/constraint/hostname.go b/internal/constraint/hostname.go index c2e9706..0918e86 100644 --- a/internal/constraint/hostname.go +++ b/internal/constraint/hostname.go @@ -1,7 +1,7 @@ package constraint import ( - configapi "github.com/creekorful/bathyscaphe/internal/configapi/client" + configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client" "net/url" "strings" ) diff --git a/internal/constraint/hostname_test.go b/internal/constraint/hostname_test.go index 4c1f403..48aaaa1 100644 --- a/internal/constraint/hostname_test.go +++ b/internal/constraint/hostname_test.go @@ -1,8 +1,8 @@ package constraint import ( - "github.com/creekorful/bathyscaphe/internal/configapi/client" - "github.com/creekorful/bathyscaphe/internal/configapi/client_mock" + "github.com/darkspot-org/bathyscaphe/internal/configapi/client" + "github.com/darkspot-org/bathyscaphe/internal/configapi/client_mock" "github.com/golang/mock/gomock" "testing" ) diff --git a/internal/crawler/crawler.go b/internal/crawler/crawler.go index 5137fb6..984109a 100644 --- a/internal/crawler/crawler.go +++ b/internal/crawler/crawler.go @@ -2,12 +2,12 @@ package crawler import ( "fmt" - "github.com/creekorful/bathyscaphe/internal/clock" - configapi "github.com/creekorful/bathyscaphe/internal/configapi/client" - "github.com/creekorful/bathyscaphe/internal/constraint" - "github.com/creekorful/bathyscaphe/internal/event" - chttp "github.com/creekorful/bathyscaphe/internal/http" - "github.com/creekorful/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/clock" + configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client" + "github.com/darkspot-org/bathyscaphe/internal/constraint" + "github.com/darkspot-org/bathyscaphe/internal/event" + chttp "github.com/darkspot-org/bathyscaphe/internal/http" + "github.com/darkspot-org/bathyscaphe/internal/process" "github.com/rs/zerolog/log" "github.com/urfave/cli/v2" "io/ioutil" diff --git a/internal/crawler/crawler_test.go b/internal/crawler/crawler_test.go index de53747..428b90d 100644 --- a/internal/crawler/crawler_test.go +++ b/internal/crawler/crawler_test.go @@ -2,16 +2,16 @@ package crawler import ( "errors" - "github.com/creekorful/bathyscaphe/internal/clock_mock" - "github.com/creekorful/bathyscaphe/internal/configapi/client" - "github.com/creekorful/bathyscaphe/internal/configapi/client_mock" - "github.com/creekorful/bathyscaphe/internal/event" - "github.com/creekorful/bathyscaphe/internal/event_mock" - "github.com/creekorful/bathyscaphe/internal/http" - "github.com/creekorful/bathyscaphe/internal/http_mock" - "github.com/creekorful/bathyscaphe/internal/process" - "github.com/creekorful/bathyscaphe/internal/process_mock" - "github.com/creekorful/bathyscaphe/internal/test" + "github.com/darkspot-org/bathyscaphe/internal/clock_mock" + "github.com/darkspot-org/bathyscaphe/internal/configapi/client" + "github.com/darkspot-org/bathyscaphe/internal/configapi/client_mock" + "github.com/darkspot-org/bathyscaphe/internal/event" + "github.com/darkspot-org/bathyscaphe/internal/event_mock" + "github.com/darkspot-org/bathyscaphe/internal/http" + "github.com/darkspot-org/bathyscaphe/internal/http_mock" + "github.com/darkspot-org/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/process_mock" + "github.com/darkspot-org/bathyscaphe/internal/test" "github.com/golang/mock/gomock" "strings" "testing" diff --git a/internal/indexer/index/elastic_test.go b/internal/indexer/index/elastic_test.go index 2ce1d68..174f9a7 100644 --- a/internal/indexer/index/elastic_test.go +++ b/internal/indexer/index/elastic_test.go @@ -1,7 +1,7 @@ package index import ( - "github.com/creekorful/bathyscaphe/internal/event" + "github.com/darkspot-org/bathyscaphe/internal/event" "testing" "time" ) diff --git a/internal/indexer/indexer.go b/internal/indexer/indexer.go index c62804b..8326d21 100644 --- a/internal/indexer/indexer.go +++ b/internal/indexer/indexer.go @@ -2,11 +2,11 @@ package indexer import ( "fmt" - configapi "github.com/creekorful/bathyscaphe/internal/configapi/client" - "github.com/creekorful/bathyscaphe/internal/constraint" - "github.com/creekorful/bathyscaphe/internal/event" - "github.com/creekorful/bathyscaphe/internal/indexer/index" - "github.com/creekorful/bathyscaphe/internal/process" + configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client" + "github.com/darkspot-org/bathyscaphe/internal/constraint" + "github.com/darkspot-org/bathyscaphe/internal/event" + "github.com/darkspot-org/bathyscaphe/internal/indexer/index" + "github.com/darkspot-org/bathyscaphe/internal/process" "github.com/rs/zerolog/log" "github.com/urfave/cli/v2" "net/http" diff --git a/internal/indexer/indexer_test.go b/internal/indexer/indexer_test.go index edeb0e6..9c7a7e8 100644 --- a/internal/indexer/indexer_test.go +++ b/internal/indexer/indexer_test.go @@ -2,15 +2,15 @@ package indexer import ( "errors" - "github.com/creekorful/bathyscaphe/internal/configapi/client" - "github.com/creekorful/bathyscaphe/internal/configapi/client_mock" - "github.com/creekorful/bathyscaphe/internal/event" - "github.com/creekorful/bathyscaphe/internal/event_mock" - "github.com/creekorful/bathyscaphe/internal/indexer/index" - "github.com/creekorful/bathyscaphe/internal/indexer/index_mock" - "github.com/creekorful/bathyscaphe/internal/process" - "github.com/creekorful/bathyscaphe/internal/process_mock" - "github.com/creekorful/bathyscaphe/internal/test" + "github.com/darkspot-org/bathyscaphe/internal/configapi/client" + "github.com/darkspot-org/bathyscaphe/internal/configapi/client_mock" + "github.com/darkspot-org/bathyscaphe/internal/event" + "github.com/darkspot-org/bathyscaphe/internal/event_mock" + "github.com/darkspot-org/bathyscaphe/internal/indexer/index" + "github.com/darkspot-org/bathyscaphe/internal/indexer/index_mock" + "github.com/darkspot-org/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/process_mock" + "github.com/darkspot-org/bathyscaphe/internal/test" "github.com/golang/mock/gomock" "reflect" "testing" diff --git a/internal/process/process.go b/internal/process/process.go index dd1cebb..b3073ab 100644 --- a/internal/process/process.go +++ b/internal/process/process.go @@ -6,11 +6,11 @@ import ( "context" "crypto/tls" "fmt" - "github.com/creekorful/bathyscaphe/internal/cache" - "github.com/creekorful/bathyscaphe/internal/clock" - configapi "github.com/creekorful/bathyscaphe/internal/configapi/client" - "github.com/creekorful/bathyscaphe/internal/event" - chttp "github.com/creekorful/bathyscaphe/internal/http" + "github.com/darkspot-org/bathyscaphe/internal/cache" + "github.com/darkspot-org/bathyscaphe/internal/clock" + configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client" + "github.com/darkspot-org/bathyscaphe/internal/event" + chttp "github.com/darkspot-org/bathyscaphe/internal/http" "github.com/rs/zerolog" "github.com/rs/zerolog/log" "github.com/urfave/cli/v2" diff --git a/internal/scheduler/scheduler.go b/internal/scheduler/scheduler.go index 1e2ccb4..be81a08 100644 --- a/internal/scheduler/scheduler.go +++ b/internal/scheduler/scheduler.go @@ -4,11 +4,11 @@ import ( "errors" "fmt" "github.com/PuerkitoBio/purell" - "github.com/creekorful/bathyscaphe/internal/cache" - configapi "github.com/creekorful/bathyscaphe/internal/configapi/client" - "github.com/creekorful/bathyscaphe/internal/constraint" - "github.com/creekorful/bathyscaphe/internal/event" - "github.com/creekorful/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/cache" + configapi "github.com/darkspot-org/bathyscaphe/internal/configapi/client" + "github.com/darkspot-org/bathyscaphe/internal/constraint" + "github.com/darkspot-org/bathyscaphe/internal/event" + "github.com/darkspot-org/bathyscaphe/internal/process" "github.com/rs/zerolog/log" "github.com/urfave/cli/v2" "hash/fnv" @@ -104,7 +104,7 @@ func (state *State) handleNewResourceEvent(subscriber event.Subscriber, msg even } // We are working using URL hash to reduce memory consumption. - // See: https://github.com/creekorful/bathyscaphe/issues/130 + // See: https://github.com/darkspot-org/bathyscaphe/issues/130 var urlHashes []string for _, u := range urls { c := fnv.New64() diff --git a/internal/scheduler/scheduler_test.go b/internal/scheduler/scheduler_test.go index 1f2d72e..3a97152 100644 --- a/internal/scheduler/scheduler_test.go +++ b/internal/scheduler/scheduler_test.go @@ -2,15 +2,15 @@ package scheduler import ( "errors" - "github.com/creekorful/bathyscaphe/internal/cache" - "github.com/creekorful/bathyscaphe/internal/cache_mock" - "github.com/creekorful/bathyscaphe/internal/configapi/client" - "github.com/creekorful/bathyscaphe/internal/configapi/client_mock" - "github.com/creekorful/bathyscaphe/internal/event" - "github.com/creekorful/bathyscaphe/internal/event_mock" - "github.com/creekorful/bathyscaphe/internal/process" - "github.com/creekorful/bathyscaphe/internal/process_mock" - "github.com/creekorful/bathyscaphe/internal/test" + "github.com/darkspot-org/bathyscaphe/internal/cache" + "github.com/darkspot-org/bathyscaphe/internal/cache_mock" + "github.com/darkspot-org/bathyscaphe/internal/configapi/client" + "github.com/darkspot-org/bathyscaphe/internal/configapi/client_mock" + "github.com/darkspot-org/bathyscaphe/internal/event" + "github.com/darkspot-org/bathyscaphe/internal/event_mock" + "github.com/darkspot-org/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/process_mock" + "github.com/darkspot-org/bathyscaphe/internal/test" "github.com/golang/mock/gomock" "hash/fnv" "strconv" diff --git a/internal/test/process.go b/internal/test/process.go index fc7b007..aa143ad 100644 --- a/internal/test/process.go +++ b/internal/test/process.go @@ -1,8 +1,8 @@ package test import ( - "github.com/creekorful/bathyscaphe/internal/process" - "github.com/creekorful/bathyscaphe/internal/process_mock" + "github.com/darkspot-org/bathyscaphe/internal/process" + "github.com/darkspot-org/bathyscaphe/internal/process_mock" "github.com/golang/mock/gomock" "reflect" "testing"