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

16 lines
289 B
Go
Raw Normal View History

2026-05-08 14:18:23 +03:00
package vgpu
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v14/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,
}
}