mirror of
https://github.com/docker/docs.git
synced 2026-03-30 15:58:53 +07:00
8 lines
202 B
Go
8 lines
202 B
Go
package api
|
|
|
|
// StatusHandler allows the API to display extra information on docker info.
|
|
type StatusHandler interface {
|
|
// Info provides key/values to be added to docker info.
|
|
Status() [][2]string
|
|
}
|