intopays
Version:
Intopays - Gateway de integração bancária
12 lines (11 loc) • 406 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PixFactory = void 0;
const PixService_1 = require("../../core/services/PixService");
const PixRemote_1 = require("../../infra/http/PixRemote");
class PixFactory {
static createPixService(config) {
return new PixService_1.PixService(new PixRemote_1.PixRemote(config));
}
}
exports.PixFactory = PixFactory;