package
0.0.1-rc1
Repository: https://github.com/xmapst/autoexecflow.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# Functions

Delete @Summary 删除 @Description 删除指定流水线 @Tags 流水线 @Accept application/json @Produce application/json @Param pipeline path string true "流水线名称" @Success 200 {object} types.SBase[any] @Failure 500 {object} types.SBase[any] @Router /api/v1/pipeline/{pipeline} [delete].
Detail @Summary 详情 @Description 获取指定流水线详情, 支持SSE订阅 @Tags 流水线 @Accept application/json @Produce application/json @Param pipeline path string true "流水线名称" @Success 200 {object} types.SBase[types.SPipelineRes] @Failure 500 {object} types.SBase[any] @Router /api/v1/pipeline/{pipeline} [get].
List @Summary 列表 @Description 获取所有流水线列表, 支持WS长连接 @Tags 流水线 @Accept application/json @Produce application/json @Param page query int false "页码" default(1) @Param size query int false "分页大小" default(100) @Success 200 {object} types.SBase[types.SPipelineListRes] @Failure 500 {object} types.SBase[any] @Router /api/v1/pipeline [get].
Post
Post @Summary 创建 @Description 创建流水线 @Tags 流水线 @Accept application/json @Produce application/json @Param content body types.SPipelineCreateReq true "流水线内容" @Success 200 {object} types.SBase[any] @Failure 500 {object} types.SBase[any] @Router /api/v1/pipeline [post].
Post @Summary 更新 @Description 更新指定流水线 @Tags 流水线 @Accept application/json @Produce application/json @Param pipeline path string true "流水线名称" @Param content body types.SPipelineUpdateReq true "更新内容" @Success 200 {object} types.SBase[any] @Failure 500 {object} types.SBase[any] @Router /api/v1/pipeline/{pipeline} [post].