mirror of
https://github.com/containers/podman.git
synced 2026-02-02 02:12:51 -05:00
convert the golang container bindings to all use options so that changes in the future are more managable. Signed-off-by: baude <bbaude@redhat.com>
29 lines
662 B
Go
29 lines
662 B
Go
package containers
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/containers/podman/v2/pkg/bindings"
|
|
"github.com/containers/storage/pkg/archive"
|
|
)
|
|
|
|
// Diff provides the changes between two container layers
|
|
func Diff(ctx context.Context, nameOrID string, options *DiffOptions) ([]archive.Change, error) {
|
|
if options == nil {
|
|
options = new(DiffOptions)
|
|
}
|
|
_ = options
|
|
conn, err := bindings.GetClient(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
response, err := conn.DoRequest(nil, http.MethodGet, "/containers/%s/changes", nil, nil, nameOrID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var changes []archive.Change
|
|
return changes, response.Process(&changes)
|
|
}
|