(s string)
| 1171 | } |
| 1172 | |
| 1173 | func (w *GinResponseRecorder) WriteString(s string) (int, error) { |
| 1174 | w.Body.WriteString(s) |
| 1175 | return len(s), nil |
| 1176 | } |
| 1177 | |
| 1178 | func (w *GinResponseRecorder) WriteHeader(statusCode int) { |
| 1179 | w.responseStatus = statusCode |
no outgoing calls
no test coverage detected