代码拉取完成,页面将自动刷新
package todos
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the generate command
import (
"net/http"
"github.com/go-swagger/go-swagger/httpkit/middleware"
)
// DestroyOneHandlerFunc turns a function with the right signature into a destroy one handler
type DestroyOneHandlerFunc func(DestroyOneParams, interface{}) middleware.Responder
// Handle executing the request and returning a response
func (fn DestroyOneHandlerFunc) Handle(params DestroyOneParams, principal interface{}) middleware.Responder {
return fn(params, principal)
}
// DestroyOneHandler interface for that can handle valid destroy one params
type DestroyOneHandler interface {
Handle(DestroyOneParams, interface{}) middleware.Responder
}
// NewDestroyOne creates a new http.Handler for the destroy one operation
func NewDestroyOne(ctx *middleware.Context, handler DestroyOneHandler) *DestroyOne {
return &DestroyOne{Context: ctx, Handler: handler}
}
/*DestroyOne swagger:route DELETE /{id} todos destroyOne
DestroyOne destroy one API
*/
type DestroyOne struct {
Context *middleware.Context
Params DestroyOneParams
Handler DestroyOneHandler
}
func (o *DestroyOne) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
route, _ := o.Context.RouteInfo(r)
uprinc, err := o.Context.Authorize(r, route)
if err != nil {
o.Context.Respond(rw, r, route.Produces, route, err)
return
}
var principal interface{}
if uprinc != nil {
principal = uprinc
}
if err := o.Context.BindValidRequest(r, route, &o.Params); err != nil { // bind params
o.Context.Respond(rw, r, route.Produces, route, err)
return
}
res := o.Handler.Handle(o.Params, principal) // actually handle the request
o.Context.Respond(rw, r, route.Produces, route, res)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。