I want to convert byte array to map[string,string] using golang. I tried this:

var byte := json.Marshal(input)
var map := make(map[string]string *byte) // NOT WORKING

if byte holds value like {\"hello\":\"world\",...} How to create the map from byte array

Please help.