2024-10-01 11:15:36 +03:00
|
|
|
package vm
|
|
|
|
|
|
|
|
|
|
import (
|
2024-10-02 12:14:31 +03:00
|
|
|
"repository.basistech.ru/BASIS/dynamix-standard-go-sdk/interfaces"
|
2024-10-01 11:15:36 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Structure for creating request to vm
|
|
|
|
|
type VM struct {
|
|
|
|
|
client interfaces.Caller
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Builder for vms endpoints
|
|
|
|
|
func New(client interfaces.Caller) *VM {
|
|
|
|
|
return &VM{
|
|
|
|
|
client,
|
|
|
|
|
}
|
|
|
|
|
}
|