aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/taskqueue
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-04 21:24:28 +0900
committernsfisis <nsfisis@gmail.com>2025-03-04 21:24:28 +0900
commit3f73872865263e8690e12f4b43040ed38b062f28 (patch)
treee3674f2a30d0a7da69002e31693d9bf3c32d927d /backend/taskqueue
parent941557cba8dcf2aae9b08e2f61420437f5603b0c (diff)
downloadiosdc-japan-2025-albatross-3f73872865263e8690e12f4b43040ed38b062f28.tar.gz
iosdc-japan-2025-albatross-3f73872865263e8690e12f4b43040ed38b062f28.tar.zst
iosdc-japan-2025-albatross-3f73872865263e8690e12f4b43040ed38b062f28.zip
update go package names
Diffstat (limited to 'backend/taskqueue')
-rw-r--r--backend/taskqueue/processor.go4
-rw-r--r--backend/taskqueue/worker_server.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/backend/taskqueue/processor.go b/backend/taskqueue/processor.go
index aef247b..222c586 100644
--- a/backend/taskqueue/processor.go
+++ b/backend/taskqueue/processor.go
@@ -7,8 +7,8 @@ import (
"fmt"
"net/http"
- "github.com/nsfisis/iosdc-japan-2024-albatross/backend/auth"
- "github.com/nsfisis/iosdc-japan-2024-albatross/backend/db"
+ "github.com/nsfisis/phperkaigi-2025-albatross/backend/auth"
+ "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
)
type processor struct {
diff --git a/backend/taskqueue/worker_server.go b/backend/taskqueue/worker_server.go
index 317f61c..51387d1 100644
--- a/backend/taskqueue/worker_server.go
+++ b/backend/taskqueue/worker_server.go
@@ -3,7 +3,7 @@ package taskqueue
import (
"github.com/hibiken/asynq"
- "github.com/nsfisis/iosdc-japan-2024-albatross/backend/db"
+ "github.com/nsfisis/phperkaigi-2025-albatross/backend/db"
)
type WorkerServer struct {