mirror of
https://github.com/moby/moby.git
synced 2026-01-11 02:31:44 +00:00
Add a new type to use for building filter predicates for API requests, replacing "./api/types/filters".Args in the client. Remove the now unused api/types/filters package. Signed-off-by: Cory Snider <csnider@mirantis.com>
7 lines
144 B
Go
7 lines
144 B
Go
package client
|
|
|
|
// NetworkListOptions holds parameters to filter the list of networks with.
|
|
type NetworkListOptions struct {
|
|
Filters Filters
|
|
}
|