mirror of
https://github.com/clastix/kamaji.git
synced 2026-03-04 10:40:18 +00:00
10 lines
224 B
Go
10 lines
224 B
Go
// Copyright 2022 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package api
|
|
|
|
type KubeadmConfigResourceVersionDependant interface {
|
|
GetKubeadmConfigResourceVersion() string
|
|
SetKubeadmConfigResourceVersion(string)
|
|
}
|