Public/Documentation/Show-EdenServiceDocsTeam.ps1

function Show-EdenServiceDocsTeam {
    <#
        .SYNOPSIS
        Showing service team docs.

        .DESCRIPTION
        Showing service team docs. by calling the local './Eden/Documentation/Show-ServiceDocsTeam.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 "Documentation/Show-ServiceDocsTeam" `
        -SettingsName $SettingsName `
        -CommandGroup "Documentation" `
        -Message "Showing service team docs." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-docst `
    -Value Show-EdenServiceDocsTeam `
    -Force