(int)
| 585 | func (noopResponseWriter) Header() http.Header { return http.Header{} } |
| 586 | func (noopResponseWriter) Write(p []byte) (int, error) { return len(p), nil } |
| 587 | func (noopResponseWriter) WriteHeader(int) {} |
| 588 | |
| 589 | // secureHeaders is only needed for statically served files. We do not need this for api endpoints. |
| 590 | // It adds various headers to enforce browser security features. |
no outgoing calls