Files
portainer/api/stacks/deployments/deployment_config.go
T

10 lines
176 B
Go

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