3 Star 2 Fork 0

Gitee 极速下载/go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/go-swagger/go-swagger
克隆/下载
get_task_details.go 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
Ivan Porto Carrero 提交于 2017-07-23 12:46 +08:00 . add codegen standard comment (#1105)
// Code generated by go-swagger; DO NOT EDIT.
package tasks
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the generate command
import (
"net/http"
middleware "github.com/go-openapi/runtime/middleware"
)
// GetTaskDetailsHandlerFunc turns a function with the right signature into a get task details handler
type GetTaskDetailsHandlerFunc func(GetTaskDetailsParams) middleware.Responder
// Handle executing the request and returning a response
func (fn GetTaskDetailsHandlerFunc) Handle(params GetTaskDetailsParams) middleware.Responder {
return fn(params)
}
// GetTaskDetailsHandler interface for that can handle valid get task details params
type GetTaskDetailsHandler interface {
Handle(GetTaskDetailsParams) middleware.Responder
}
// NewGetTaskDetails creates a new http.Handler for the get task details operation
func NewGetTaskDetails(ctx *middleware.Context, handler GetTaskDetailsHandler) *GetTaskDetails {
return &GetTaskDetails{Context: ctx, Handler: handler}
}
/*GetTaskDetails swagger:route GET /tasks/{id} tasks getTaskDetails
Gets the details for a task.
The details view has more information than the card view.
You can see who reported the issue and who last updated it when.
There are also comments for each issue.
*/
type GetTaskDetails struct {
Context *middleware.Context
Handler GetTaskDetailsHandler
}
func (o *GetTaskDetails) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
route, rCtx, _ := o.Context.RouteInfo(r)
if rCtx != nil {
r = rCtx
}
var Params = NewGetTaskDetailsParams()
if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
o.Context.Respond(rw, r, route.Produces, route, err)
return
}
res := o.Handler.Handle(Params) // actually handle the request
o.Context.Respond(rw, r, route.Produces, route, res)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/go-swagger.git
git@gitee.com:mirrors/go-swagger.git
mirrors
go-swagger
go-swagger
v0.19.0

搜索帮助