This commit is contained in:
dayterr
2026-05-08 14:18:23 +03:00
parent 5e5d90e24f
commit d82ae52951
9 changed files with 239 additions and 85 deletions

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

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