Public/Operations/Get-EdenServiceUrl.ps1

function Get-EdenServiceUrl {
    <#
        .SYNOPSIS
        Getting service url.

        .DESCRIPTION
        Getting service url. by calling the local './Eden/Operations/Get-ServiceUrl.ps1' script.
    #>

    [CmdletBinding()]
    param(
        # The name of the local or global settins file to pass to the Eden script.
        [Alias("sn")]
        [String] $SettingsName,
        # The additional arguments to pass to the Eden script.
        [Alias("aa")]
        [HashTable] $AdditionalArguments
    )

    Invoke-EdenCommandStandardFlow `
        -LocalCommandPath "Operations/Get-ServiceUrl" `
        -SettingsName $SettingsName `
        -CommandGroup "Operations" `
        -Message "Getting service url." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-ou `
    -Value Get-EdenServiceUrl `
    -Force