Public/Documentation/Show-EdenServiceDocsArchitecture.ps1
function Show-EdenServiceDocsArchitecture { <# .SYNOPSIS Showing service architecture docs. .DESCRIPTION Showing service architecture docs. by calling the local './Eden/Documentation/Show-ServiceDocsArchitecture.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-ServiceDocsArchitecture" ` -SettingsName $SettingsName ` -CommandGroup "Documentation" ` -Message "Showing service architecture docs." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-docsa ` -Value Show-EdenServiceDocsArchitecture ` -Force |