Files
decort-golang-sdk/pkg/cloudapi/computeci/computeci.go
2022-10-03 16:56:47 +03:00

16 lines
210 B
Go

package computeci
import (
"github.com/rudecs/decort-sdk/interfaces"
)
type ComputeCI struct {
client interfaces.Caller
}
func New(client interfaces.Caller) *ComputeCI {
return &ComputeCI{
client,
}
}