2
0
mirror of https://github.com/hibiken/asynq.git synced 2025-02-23 20:30:19 +08:00
asynq/tools/asynqmon/main.go

12 lines
253 B
Go
Raw Normal View History

2020-01-02 18: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-03 20:02:29 -08:00
package main
2019-12-06 06:51:55 -08:00
import "github.com/hibiken/asynq/tools/asynqmon/cmd"
2019-12-03 20:02:29 -08:00
func main() {
2019-12-06 06:51:55 -08:00
cmd.Execute()
2019-12-03 20:02:29 -08:00
}