mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 06:49:40 +02:00
clean database models directory (#8026)
This commit is contained in:
parent
881e99df53
commit
6775c7b6ec
12 changed files with 12 additions and 12 deletions
12
api/http/models/kubernetes/namespaces.go
Normal file
12
api/http/models/kubernetes/namespaces.go
Normal file
|
@ -0,0 +1,12 @@
|
|||
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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue