Files
decort-golang-sdk/pkg/cloudapi/vgpu/vgpu.go
2026-05-08 14:10:06 +03:00

16 lines
284 B
Go

package vgpu
import "repository.basistech.ru/BASIS/decort-golang-sdk/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,
}
}