feat: Implement get paddle info API endpoint

This commit is contained in:
Faruk AYDIN
2024-02-22 20:22:05 +01:00
parent d21e1f75b5
commit 6fdc4bf900
4 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
const getPaddleInfoMock = async () => {
return {
data: {
sandbox: true,
vendorId: 'sampleVendorId',
},
meta: {
count: 1,
currentPage: null,
isArray: false,
totalPages: null,
type: 'Object',
},
};
};
export default getPaddleInfoMock;