Init commit

This commit is contained in:
Archie Fox
2025-05-21 19:35:54 +03:00
commit 7e94d8bd48
5 changed files with 153 additions and 0 deletions

11
clients/telegram/types.go Normal file
View File

@@ -0,0 +1,11 @@
package telegram
type UpdateResponse struct {
Ok bool `json:"ok"`
Result []Update `json:"result"`
}
type Update struct {
ID int `json:"update_id"`
Message string `json:"message"`
}