mirror of https://github.com/containers/podman.git
15 lines
400 B
Go
15 lines
400 B
Go
package entities
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// ServiceOptions provides the input for starting an API Service
|
|
type ServiceOptions struct {
|
|
URI string // Path to unix domain socket service should listen on
|
|
Timeout time.Duration // duration of inactivity the service should wait before shutting down
|
|
Command *cobra.Command // CLI command provided. Used in V1 code
|
|
}
|