mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-31 16:33:54 +00:00
15 lines
289 B
Go
15 lines
289 B
Go
package modules
|
|
|
|
import (
|
|
"github.com/kubesphere/kubekey/pkg/core/cache"
|
|
"github.com/kubesphere/kubekey/pkg/core/connector"
|
|
)
|
|
|
|
type Module interface {
|
|
Default(runtime connector.Runtime, rootCache *cache.Cache, moduleCache *cache.Cache)
|
|
Init()
|
|
Is() string
|
|
Run() error
|
|
AutoAssert()
|
|
}
|