Files
tgbot/clients/telegram/types.go
Archie Fox 7e94d8bd48 Init commit
2025-05-21 19:35:54 +03:00

12 lines
203 B
Go

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"`
}