mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
14 lines
287 B
Go
14 lines
287 B
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)
|
||
|
}
|