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

11 lines
198 B
Go

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