Files
dynamix-golang-sdk/pkg/cloudapi/pcidevice/pcidevice.go
2025-12-08 16:30:08 +03:00

16 lines
321 B
Go

package pcidevice
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v13/interfaces"
// Structure for creating request to PCI device
type PCIDevice struct {
client interfaces.Caller
}
// Builder for PCI device endpoints
func New(client interfaces.Caller) *PCIDevice {
return &PCIDevice{
client: client,
}
}