Public/Get-Config.ps1

<#
    .SYNOPSIS
    Returns the current configuration for accessing the salesforce org and cdr/pds instance

    .INPUTS
    None. You cannot pipe objects to Convert-CsvToMessages.

    .OUTPUTS
    The current configuration
#>

function Get-Config {
    Get-Variable -Name __config -Scope Script -ValueOnly -ErrorAction SilentlyContinue
}