a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
13 lignes
287 o
Go
13 lignes
287 o
Go
package uritemplates
|
|
|
|
func Expand(path string, expansions map[string]string) (string, error) {
|
|
template, err := Parse(path)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
values := make(map[string]interface{})
|
|
for k, v := range expansions {
|
|
values[k] = v
|
|
}
|
|
return template.Expand(values)
|
|
}
|