mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-06 17:37:09 +00:00
12 lines
153 B
Go
12 lines
153 B
Go
package types
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/client-go/rest"
|
|
)
|
|
|
|
type Args struct {
|
|
Config *rest.Config
|
|
Schema *runtime.Scheme
|
|
}
|