1 Star 0 Fork 0

gaogaoss/go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
list_tasks.go 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
gaogao 提交于 2024-07-30 09:49 +08:00 . first commit
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"
)
// ListTasksHandlerFunc turns a function with the right signature into a list tasks handler
type ListTasksHandlerFunc func(ListTasksParams) middleware.Responder
// Handle executing the request and returning a response
func (fn ListTasksHandlerFunc) Handle(params ListTasksParams) middleware.Responder {
return fn(params)
}
// ListTasksHandler interface for that can handle valid list tasks params
type ListTasksHandler interface {
Handle(ListTasksParams) middleware.Responder
}
// NewListTasks creates a new http.Handler for the list tasks operation
func NewListTasks(ctx *middleware.Context, handler ListTasksHandler) *ListTasks {
return &ListTasks{Context: ctx, Handler: handler}
}
/*ListTasks swagger:route GET /tasks tasks listTasks
Lists the tasks
Allows for specifying a number of filter parameters to
narrow down the results.
Also allows for specifying a **sinceId** and **pageSize** parameter
to page through large result sets.
*/
type ListTasks struct {
Context *middleware.Context
Handler ListTasksHandler
}
func (o *ListTasks) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
route, _ := o.Context.RouteInfo(r)
var Params = NewListTasksParams()
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 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gaogaoss/go-swagger.git
git@gitee.com:gaogaoss/go-swagger.git
gaogaoss
go-swagger
go-swagger
da1ca328b83f

搜索帮助