ps/Modules/Alkami.PowerShell.Choco/Public/Get-MicroserviceTiers.ps1
2023-05-30 22:51:22 -07:00

11 lines
209 B
PowerShell

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