mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-10-09 17:20:30 +08:00
11 lines
147 B
Go
11 lines
147 B
Go
package mesh
|
|
|
|
import (
|
|
v1 "k8s.io/api/core/v1"
|
|
)
|
|
|
|
type Injectable interface {
|
|
Inject() (map[string]string, *v1.PodSpec, error)
|
|
Cancel() error
|
|
}
|