Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
message := map[string]string{ "cmd": "subscribe", "auth_key": "dfb496cca67e13b", "needed_bk": []string {"live"} }
message := map[string]interface{}{ "cmd": "subscribe", "auth_key": "dfb496cca67e13b", "needed_bk": []string {"live"}, }
/main.go:39:3: syntax error: unexpected literal "cmd", expecting method or interface name ./main.go:42:2: syntax error: unexpected }, expecting expression ./main.go:43:2: syntax error: non-declaration statement outside function body
package main import "fmt" func main() { message := map[string]interface{}{ "cmd": "subscribe", "auth_key": "dfb496cca67e13b", "needed_bk": []string{"live"}, } fmt.Printf("%+v\n", message) }