Move tools to its own go module

This commit is contained in:
Ken Hibino
2020-02-17 21:48:36 -08:00
parent e78d5e4171
commit b44908fefd
4 changed files with 208 additions and 157 deletions

14
tools/go.mod Normal file
View File

@@ -0,0 +1,14 @@
module github.com/hibiken/asynq/tools
go 1.13
require (
github.com/go-redis/redis/v7 v7.1.0
github.com/hibiken/asynq v0.4.0
github.com/mitchellh/go-homedir v1.1.0
github.com/rs/xid v1.2.1
github.com/spf13/cobra v0.0.5
github.com/spf13/viper v1.6.2
)
replace github.com/hibiken/asynq => ./..