PSMatrix/private/New-MatrixUrl.ps1
2022-03-27 15:33:05 +01:00

11 lines
209 B
PowerShell

function New-MatrixUrl {
param(
[Parameter(Mandatory)]
[string]$ServerUrl,
[Parameter(Mandatory)]
[string]$ApiPath
)
return $ServerUrl.Trim("/") + "/" + $ApiPath
}