PCSetup.psm1

#Import Functions
$FunctionPath = $PSScriptRoot + "\Functions\"
$FunctionList = get-childitem $FunctionPath -Name

ForEach ($Function in $FunctionList) {
    . ($FunctionPath + $Function)
}

function Get-PCSetup {
    Get-Command -Module PCSetup
}

Write-Host "Get-PCSetup to get commands" -ForegroundColor Green