ferry/pkg/task/send.go

15 lines
201 B
Go
Raw Normal View History

2020-07-15 01:40:56 +08:00
package task
/*
@Author : lanyulei
*/
import (
"context"
"ferry/pkg/task/worker"
)
func Send(classify string, scriptPath string) {
worker.SendTask(context.Background(), classify, scriptPath)
}