Public/Work/Show-EdenServiceFeatureRoadMap.ps1

function Show-EdenServiceFeatureRoadMap {
    <#
        .SYNOPSIS
        Showing product roadmap.

        .DESCRIPTION
        Showing product roadmap. by calling the local './Eden/Work/Show-ServiceFeatureRoadMap.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 "Work/Show-ServiceFeatureRoadMap" `
        -SettingsName $SettingsName `
        -CommandGroup "Work" `
        -Message "Showing product roadmap." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-wfrm `
    -Value Show-EdenServiceFeatureRoadMap `
    -Force