| 9 | ) |
| 10 | |
| 11 | type Http struct { |
| 12 | Received chan string // received messages from web |
| 13 | ToSend chan Message // messages to send to web |
| 14 | } |
| 15 | |
| 16 | type Req struct { |
| 17 | Message string `json:"message" form:"message"` |
nothing calls this directly
no outgoing calls
no test coverage detected