Gorelo.psm1
|
# Gorelo.psm1 # Auto-loads all function files from the Functions folder $functionPath = Join-Path $PSScriptRoot 'Functions' Get-ChildItem -Path $functionPath -Filter '*.ps1' | ForEach-Object { Write-Verbose "Loading $($_.Name)" . $_.FullName } |