16 lines
289 B
Go
16 lines
289 B
Go
package vgpu
|
|
|
|
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v13/interfaces"
|
|
|
|
// Structure for creating request to VGPU
|
|
type VGPU struct {
|
|
client interfaces.Caller
|
|
}
|
|
|
|
// Builder for VGPU endpoints
|
|
func New(client interfaces.Caller) *VGPU {
|
|
return &VGPU{
|
|
client: client,
|
|
}
|
|
}
|