Files
dynamix-golang-sdk/pkg/cloudapi/stack/stack.go
2025-09-27 01:06:15 +03:00

17 lines
318 B
Go

// Lists all the stack.
package stack
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/interfaces"
// Structure for creating request to stack
type Stack struct {
client interfaces.Caller
}
// Builder for stack endpoint
func New(client interfaces.Caller) *Stack {
return &Stack{
client: client,
}
}