mtg-price-bot/vk/structs.go
Artyom Belousov 657f967a49 Added VK part
2019-05-11 14:01:40 +03:00

11 lines
205 B
Go

package vk
type MessageRequest struct {
Object UserMessage `json:"object"`
Secret string `json:"secret"`
}
type UserMessage struct {
Body string `json:"body"`
UserId int64 `json:"user_id"`
}