12 lines
203 B
Go
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"`
|
|
}
|