15 lines
201 B
Go
15 lines
201 B
Go
![]() |
package task
|
||
|
|
||
|
/*
|
||
|
@Author : lanyulei
|
||
|
*/
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"ferry/pkg/task/worker"
|
||
|
)
|
||
|
|
||
|
func Send(classify string, scriptPath string) {
|
||
|
worker.SendTask(context.Background(), classify, scriptPath)
|
||
|
}
|