GinShell.psm1
# Test if the module is loaded correctly and working function Test-Gs { Write-Host "GinShell module is working correctly! `n Current Installed Path: $PSScriptRoot" } # Load individual function files . "$PSScriptRoot\Utilities\Logging.ps1" # Export members Export-ModuleMember -Function '*' |