项目文件夹

文件
2026-07-13 12:08:39 +08:00

10 行
176 B
Go

package deployments
import "context"
type StackDeploymentConfiger interface {
Deploy(ctx context.Context) error
Undeploy(ctx context.Context) error
GetResponse() string
}