LogRequest represents the request part of a log entry
| 26 | |
| 27 | // LogRequest represents the request part of a log entry |
| 28 | type LogRequest struct { |
| 29 | Method string `json:"method"` |
| 30 | URL string `json:"url"` |
| 31 | Body interface{} `json:"body"` |
| 32 | } |
| 33 | |
| 34 | // LogResponse represents the response part of a log entry |
| 35 | type LogResponse struct { |
nothing calls this directly
no outgoing calls
no test coverage detected