PSNotifySend.psm1
# Import Public and Private functions $Public = @( Get-ChildItem -Path "$PSScriptRoot/Public/*.ps1" -Recurse ) $Private = @( Get-ChildItem -Path "$PSScriptRoot/Private/*.ps1" -Recurse ) @($Public + $Private) | ForEach-Object { try { . $_.FullName } catch { Write-Error -Message "Failed to import function $($_.FullName): $_" } } |