ps/Modules/Alkami.PowerShell.Choco/Public/Get-MicroserviceTiers.ps1

11 lines
209 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
function Get-MicroserviceTiers {
<#
.SYNOPSIS
Returns a list of arrays organizing package names into dependent tiers of installation.
#>
[CmdletBinding()]
Param()
return $_MicroserviceTiers;
}