functions/Get-BBScriptVariables.ps1

function Get-ScriptVariables {
    <#
        .SYNOPSIS
        Gets the Current Blackboard REST API configurations for the PSBlackboard Module.
        .DESCRIPTION
        Gets the Current Blackboard REST API configurations for the PSBlackboard Module. $BBRESTVariables is created when the module is loaded. It is only
        accessable by using this function.
        .EXAMPLE
        Get-ScriptVariables
    #>


    [CmdletBinding()]
    Param()
    Begin{}
    Process{
    return $BBRESTVariables
    }
    end
{

}
    }