mirror of https://github.com/portainer/portainer
13 lines
257 B
Go
13 lines
257 B
Go
|
package kubernetes
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
type K8sNamespaceDetails struct {
|
||
|
Name string `json:"Name"`
|
||
|
Annotations map[string]string `json:"Annotations"`
|
||
|
}
|
||
|
|
||
|
func (r *K8sNamespaceDetails) Validate(request *http.Request) error {
|
||
|
return nil
|
||
|
}
|