11 lines
198 B
Go
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
|
|
}
|