Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Module = fx.Options( fx.Invoke(Register), fx.Provide(NewService), )
Module for fx.
Functions ¶
Types ¶
type CreatePipelineRequest ¶
type CreatePipelineRequest struct {
Pipeline *Pipeline `json:"pipeline,omitempty"`
}
CreatePipelineRequest with a definition.
type CreatePipelineResponse ¶
type CreatePipelineResponse struct { Meta map[string]string `json:"meta,omitempty"` Pipeline *Pipeline `json:"pipeline,omitempty"` }
CreatePipelineResponse a map of meta and the new pipeline.
type GetPipelineResponse ¶ added in v0.6.0
type GetPipelineResponse struct { Meta map[string]string `json:"meta,omitempty"` Pipeline *Pipeline `json:"pipeline,omitempty"` }
GetPipelineResponse a map of meta and the pipeline.
type Pipeline ¶
type Pipeline struct { Name string `json:"name,omitempty"` Jobs []*Job `json:"jobs,omitempty"` ID uint64 `json:"id,omitempty"` }
Pipeline to be executed.
type UpdatePipelineRequest ¶ added in v0.8.0
type UpdatePipelineRequest struct {
Pipeline *Pipeline `json:"pipeline,omitempty"`
}
UpdatePipelineRequest with a definition.
type UpdatePipelineResponse ¶ added in v0.8.0
type UpdatePipelineResponse struct { Meta map[string]string `json:"meta,omitempty"` Pipeline *Pipeline `json:"pipeline,omitempty"` }
UpdatePipelineResponse a map of meta and the updated pipeline.
Click to show internal directories.
Click to hide internal directories.