Files
moby/client/network_list_opts.go
Cory Snider 7ea066c8d1 client: add Filters type
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>
2025-10-08 12:06:31 -04:00

7 lines
144 B
Go

package client
// NetworkListOptions holds parameters to filter the list of networks with.
type NetworkListOptions struct {
Filters Filters
}