# frozen_string_literal: true require 'json' module Minty module Mixins module Headers def client_headers(client_id, client_secret, application_id) { 'Content-Type' => 'application/json', 'Authorization' => "Bearer #{client_secret}", 'API-MINTY-CLIENT-ID' => client_id, 'API-MINTY-APPLICATION-ID' => application_id, 'Accept' => 'application/json' } end end end end