mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 21:39:40 +02:00
13 lines
247 B
Go
13 lines
247 B
Go
|
package models
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
type K8sNamespaceInfo struct {
|
||
|
Name string `json:"Name"`
|
||
|
Annotations map[string]string `json:"Annotations"`
|
||
|
}
|
||
|
|
||
|
func (r *K8sNamespaceInfo) Validate(request *http.Request) error {
|
||
|
return nil
|
||
|
}
|