Beta.MigrationAnalysis.psm1
|
function Show-HelloMessage { Write-Host "Hello from my module!" -ForegroundColor Cyan } # Export the function so it is available when the module is imported Export-ModuleMember -Function Show-HelloMessage |