Files
moby/daemon/server/volumebackend/volume.go
Cory Snider 778e5bfad3 api/types/filters: move to daemon/internal
Most of the code in the filters package relates to the unmarshaling,
validation and application of filters from client requests. None of this
is necessary or particularly useful for Go SDK users. Move the full-fat
filters package into daemon/internal and switch all the daemon code to
import that package so we are free to iterate upon the code without
worrying about source-code interface compatibility.

Signed-off-by: Cory Snider <csnider@mirantis.com>
2025-10-08 12:06:26 -04:00

8 lines
131 B
Go

package volumebackend
import "github.com/moby/moby/v2/daemon/internal/filters"
type ListOptions struct {
Filters filters.Args
}