15 lines
450 B
PowerShell
15 lines
450 B
PowerShell
# File: ZertoApiWrapper.psm1
|
|
|
|
$Public = @( Get-ChildItem -Path $PSScriptRoot\Public\*.ps1 -ErrorAction SilentlyContinue )
|
|
$Private = @( Get-ChildItem -Path $PSScriptRoot\Private\*.ps1 -ErrorAction SilentlyContinue )
|
|
|
|
foreach ($import in @($Public + $Private)) {
|
|
try {
|
|
. $import.fullname
|
|
} catch {
|
|
Write-Error -Message "Failed to import function $($import.fullname): $_"
|
|
}
|
|
}
|
|
|
|
Export-ModuleMember -Function $Public.Basename
|