mirror of https://github.com/portainer/portainer
10 lines
186 B
Go
10 lines
186 B
Go
![]() |
package kubernetes
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type K8sRole struct {
|
||
|
Name string `json:"name"`
|
||
|
Namespace string `json:"namespace"`
|
||
|
CreationDate time.Time `json:"creationDate"`
|
||
|
}
|