[ Agent ] [ Executor ] - 调整Executor部分的代码

This commit is contained in:
zeaslity
2023-10-11 11:24:27 +08:00
parent 346512e770
commit 62712dfbce
4 changed files with 155 additions and 19 deletions

View File

@@ -6,7 +6,8 @@ import (
)
type OctopusFunc interface {
Exec(baseFuncName string, funcArgs ...string) []string
Command(baseFuncName string, funcArgs ...string) []string
Exec(baseFuncName string, funcArgs ...string) (bool, []string)
Deploy(appFuncName string, funcArgs ...string) (bool, []string)
}