mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-03-04 19:10:26 +00:00
9 lines
240 B
Go
9 lines
240 B
Go
package server
|
|
|
|
type Response struct {
|
|
Environment []string `json:"environment"`
|
|
Runtime map[string]string `json:"runtime"`
|
|
Labels map[string]string `json:"labels"`
|
|
Annotations map[string]string `json:"annotations"`
|
|
}
|