Private/Get-Headers.ps1

function Get-Headers
{
    [CmdletBinding()]
    param(
    )

    return @{
        'X-Api-Key' = $Config.APIKey
    }
}