(chatId string, text string)
| 34 | // Pipe is the core interface every pipe platform must implement. |
| 35 | type Pipe interface { |
| 36 | SendMessage(chatId string, text string) error |
| 37 | ParseWebhookRequest(body []byte) (*IncomingMessage, error) |
| 38 | SetWebhook(webhookUrl string) error |
| 39 | } |
no outgoing calls
no test coverage detected