| 28 | ) |
| 29 | |
| 30 | type failingCSRFStorage struct { |
| 31 | data map[string][]byte |
| 32 | errs map[string]error |
| 33 | } |
| 34 | |
| 35 | func newFailingCSRFStorage() *failingCSRFStorage { |
| 36 | return &failingCSRFStorage{ |
nothing calls this directly
no outgoing calls
no test coverage detected