Files
dynamix-golang-sdk/pkg/cloudapi/stack/stack.go

17 lines
318 B
Go
Raw Normal View History

2025-09-23 14:34:24 +03:00
// Lists all the stack.
package stack
2025-09-27 01:06:15 +03:00
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v12/interfaces"
2025-09-23 14:34:24 +03:00
// 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,
}
}