github.com/circl-dev/go-swagger@v0.31.0/examples/file-server/restapi/operations/uploads/upload_file_responses.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package uploads 4 5 // This file was generated by the swagger tool. 6 // Editing this file might prove futile when you re-run the swagger generate command 7 8 import ( 9 "net/http" 10 11 "github.com/circl-dev/runtime" 12 ) 13 14 // UploadFileOKCode is the HTTP code returned for type UploadFileOK 15 const UploadFileOKCode int = 200 16 17 /*UploadFileOK OK 18 19 swagger:response uploadFileOK 20 */ 21 type UploadFileOK struct { 22 } 23 24 // NewUploadFileOK creates UploadFileOK with default headers values 25 func NewUploadFileOK() *UploadFileOK { 26 27 return &UploadFileOK{} 28 } 29 30 // WriteResponse to the client 31 func (o *UploadFileOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) { 32 33 rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses 34 35 rw.WriteHeader(200) 36 }