From 0836fe60b7f0358a7bd98b489872d185d31811c2 Mon Sep 17 00:00:00 2001 From: ajatprabha Date: Sat, 18 Sep 2021 19:40:42 +0530 Subject: [PATCH] rename go module --- cmd/asynqmon/main.go | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/asynqmon/main.go b/cmd/asynqmon/main.go index 6b31d13..b798b3e 100644 --- a/cmd/asynqmon/main.go +++ b/cmd/asynqmon/main.go @@ -10,10 +10,10 @@ import ( "strings" "time" - "github.com/ajatprabha/asynqmon" "github.com/go-redis/redis/v7" "github.com/gorilla/mux" "github.com/hibiken/asynq" + "github.com/hibiken/asynqmon" "github.com/rs/cors" ) diff --git a/go.mod b/go.mod index 12c7f63..dba40b1 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/ajatprabha/asynqmon +module github.com/hibiken/asynqmon go 1.16