goop/internal/utils/urls.go

9 lines
208 B
Go

package utils
import "strings"
//TODO: replace all uses of this with the proper path utils
func Url(base, path string) string {
return strings.TrimSuffix(base, "/") + "/" + strings.TrimPrefix(path, "/")
}