mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-03-06 20:10:22 +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 []string `json:"labels"`
|
|
Annotations []string `json:"annotations"`
|
|
}
|