Changes response of postContainersWait to use a struct

Signed-off-by: Nick Parker <nikaios@gmail.com>
This commit is contained in:
Nick Parker 2015-03-25 21:01:14 -06:00
Родитель 9cf9773339
Коммит 400c3f1f99
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -24,3 +24,9 @@ type AuthResponse struct {
// Status is the authentication status
Status string `json:"Status"`
}
// POST /auth
type ContainerWaitResponse struct {
// StatusCode is the status code of the wait job
StatusCode int `json:"StatusCode"`
}