mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-31 08:22:50 +00:00
13 lines
297 B
Go
13 lines
297 B
Go
package action
|
|
|
|
import (
|
|
"github.com/kubesphere/kubekey/pkg/core/cache"
|
|
"github.com/kubesphere/kubekey/pkg/core/connector"
|
|
)
|
|
|
|
type Action interface {
|
|
Execute(runtime connector.Runtime) (err error)
|
|
Init(cache *cache.Cache, rootCache *cache.Cache, runtimeConf connector.Runtime)
|
|
AutoAssert()
|
|
}
|