KubeTidy.psm1
# Dot Source all functions in all ps1 files located in this module Get-ChildItem -Path $PSScriptRoot\Public\*.ps1 | ForEach-Object { . $_.FullName } # Dot Source all functions in all ps1 files located in this module Get-ChildItem -Path $PSScriptRoot\Private\*.ps1 | ForEach-Object { . $_.FullName } |