PowerSysAdmin.psm1

# Dot-source all function files in the Functions folder
Get-ChildItem -Path "$PSScriptRoot\Functions\*.ps1" | ForEach-Object {
    . $_.FullName
}