Files
moby/client/swarm_service_list_opts.go
2025-08-26 07:21:40 -05:00

13 lines
310 B
Go

package client
import "github.com/moby/moby/api/types/filters"
// ServiceListOptions holds parameters to list services with.
type ServiceListOptions struct {
Filters filters.Args
// Status indicates whether the server should include the service task
// count of running and desired tasks.
Status bool
}