2
0
mirror of https://github.com/hibiken/asynq.git synced 2024-12-28 16:43:39 +08:00
asynq/tools/asynq/main.go

12 lines
250 B
Go
Raw Normal View History

2020-01-03 10:13:16 +08:00
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
2019-12-04 12:02:29 +08:00
package main
2020-04-13 05:37:42 +08:00
import "github.com/hibiken/asynq/tools/asynq/cmd"
2019-12-04 12:02:29 +08:00
func main() {
2019-12-06 22:51:55 +08:00
cmd.Execute()
2019-12-04 12:02:29 +08:00
}