1
1
mirror of https://github.com/go-gitea/gitea synced 2025-01-09 17:24:43 +00:00

14 lines
287 B
Go
Raw Normal View History

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)
}