| 23 | const telegramApiBaseUrl = "https://api.telegram.org" |
| 24 | |
| 25 | type TelegramPipe struct { |
| 26 | botToken string |
| 27 | httpClient *http.Client |
| 28 | } |
| 29 | |
| 30 | type telegramUser struct { |
| 31 | Id int64 `json:"id"` |
nothing calls this directly
no outgoing calls
no test coverage detected