a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
11 lignes
396 o
Go
11 lignes
396 o
Go
// Copyright 2012-present Oliver Eilhard. All rights reserved.
|
|
// Use of this source code is governed by a MIT-license.
|
|
// See http://olivere.mit-license.org/license.txt for details.
|
|
|
|
package elastic
|
|
|
|
// AcknowledgedResponse is returned from various APIs. It simply indicates
|
|
// whether the operation is ack'd or not.
|
|
type AcknowledgedResponse struct {
|
|
Acknowledged bool `json:"acknowledged"`
|
|
}
|