mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
13 lines
310 B
Go
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
|
|
}
|