ps/Modules/Alkami.PowerShell.Configuration/Public/Get-ValidPackageDatabaseConfigFilenames.ps1

15 lines
354 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
function Get-ValidPackageDatabaseConfigFilenames {
<#
.SYNOPSIS
Get the list of valid database config file names
The idea is that if we add more support for additional names, we can add them to this list for iteration.
#>
[CmdletBinding()]
[OutputType([string[]])]
param (
)
return @(
'DatabaseConfig.ps1'
)
}