Files
decort-golang-sdk/k8ci/k8ci.go
Пётр Крутов 68d24d41c4 Dev
2022-08-11 08:09:54 +00:00

16 lines
205 B
Go

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