2
0
mirror of https://github.com/hibiken/asynq.git synced 2024-09-21 03:16:57 +08:00
asynq/tools/asynqmon/main.go

12 lines
253 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
2019-12-06 22:51:55 +08:00
import "github.com/hibiken/asynq/tools/asynqmon/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
}