This commit is contained in:
dayterr
2026-05-08 14:10:06 +03:00
parent 2bd93e92c2
commit f93065e8b1
11 changed files with 252 additions and 85 deletions

15
pkg/cloudapi/vgpu/vgpu.go Normal file
View File

@@ -0,0 +1,15 @@
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,
}
}