mirror of
https://github.com/Thumbscrew/PSMatrix.git
synced 2024-11-12 17:13:52 +00:00
11 lines
209 B
PowerShell
11 lines
209 B
PowerShell
function New-MatrixUrl {
|
|
param(
|
|
[Parameter(Mandatory)]
|
|
[string]$ServerUrl,
|
|
|
|
[Parameter(Mandatory)]
|
|
[string]$ApiPath
|
|
)
|
|
|
|
return $ServerUrl.Trim("/") + "/" + $ApiPath
|
|
} |