Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 2x 2x 2x 2x 8x 8x 2x 2x | import { WebhookService } from "@/core/services/WebhookService";
import { WebhookFactory } from "@/app/factories/WebhookFactory";
import { PixService } from "@/core/services/PixService";
import { PixFactory } from "./factories/PixFactory";
export class Intopays {
public webhooks: WebhookService;
public pixs: PixService;
public constructor(config: IntopaysConstructor) {
this.webhooks = WebhookFactory.createWebhookService(config);
this.pixs = PixFactory.createPixService(config);
}
}
export type IntopaysConstructor = {
token: string
mode?: "production" | "development"
};
export default Intopays;
|