func Sendmessage(message string, chatID int,b *Bot){
response := fmt.Sprintf("%s%s/sendMessage",b.Base_url,b.Token)
var test = "{inline_keyboard:{\"text\":\"hello\",\"url\":\"ya.ru\"}"
answer := map[string]interface{}{"chat_id":chatID,"text":message,"reply_markup":test}
mapAnswer, _ := json.Marshal(answer)
networkRequest.ProxyPost(response,string(mapAnswer))
}
type InlineKeyboard [][]InlineKeyboardButton
type InlineKeyboardButton struct {
Text string
Url string
CallbackData interface{}
}