UNPKG

squad-gateway

Version:

A Node.js wrapper for SquadCo payment gateway API.

13 lines (12 loc) 391 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const axios_1 = require("axios"); const config_1 = require("./config"); const httpClient = axios_1.default.create({ baseURL: config_1.SQUAD_API_BASE, headers: { Authorization: `Bearer ${config_1.SQUAD_SECRET_KEY}`, 'Content-Type': 'application/json' } }); exports.default = httpClient;