Cómo verificar si existe un valor en el map golang

if val, ok := dict["foo"]; ok {
    //do something here
}
Pleasant Panther