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

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

@@ -0,0 +1,8 @@
package cloudapi
import "repository.basistech.ru/BASIS/decort-golang-sdk/pkg/cloudapi/vgpu"
// Accessing the VGPU method group
func (ca *CloudAPI) VGPU() *vgpu.VGPU {
return vgpu.New(ca.client)
}