BodyRequest is our self-made struct to process JSON request from Client
| 9 | |
| 10 | // BodyRequest is our self-made struct to process JSON request from Client |
| 11 | type BodyRequest struct { |
| 12 | RequestName string `json:"name"` |
| 13 | } |
| 14 | |
| 15 | // BodyResponse is our self-made struct to build response for Client |
| 16 | type BodyResponse struct { |
nothing calls this directly
no outgoing calls
no test coverage detected