Files
export-xlsx/build/app/restapi/operations/delete_responses.go
Nathan Coad 54093c9106
All checks were successful
continuous-integration/drone/push Build is passing
functionbuilder
2023-02-10 16:15:36 +11:00

37 lines
769 B
Go

// Code generated by go-swagger; DO NOT EDIT.
package operations
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"github.com/go-openapi/runtime"
)
// DeleteOKCode is the HTTP code returned for type DeleteOK
const DeleteOKCode int = 200
/*DeleteOK delete o k
swagger:response deleteOK
*/
type DeleteOK struct {
}
// NewDeleteOK creates DeleteOK with default headers values
func NewDeleteOK() *DeleteOK {
return &DeleteOK{}
}
// WriteResponse to the client
func (o *DeleteOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
rw.WriteHeader(200)
}