mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
12 lines
253 B
Go
12 lines
253 B
Go
package models
|
|
|
|
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
|
|
}
|