Files
decort-golang-sdk/pkg/cloudapi/pcidevice/pcidevice.go

16 lines
316 B
Go
Raw Normal View History

2024-04-16 14:26:06 +03:00
package pcidevice
import "repository.basistech.ru/BASIS/decort-golang-sdk/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,
}
}