mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
10 lines
196 B
Go
10 lines
196 B
Go
|
package kubernetes
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type K8sServiceAccount struct {
|
||
|
Name string `json:"name"`
|
||
|
Namespace string `json:"namespace"`
|
||
|
CreationDate time.Time `json:"creationDate"`
|
||
|
}
|