#5 feat(API): getCSVForTryton

This commit is contained in:
2025-03-03 22:06:49 -05:00
parent 4e88477323
commit db8ec154ae
2 changed files with 9 additions and 0 deletions

View File

@@ -46,6 +46,10 @@ class Api {
createCustomer(customer) {
return this.apiImplementation.createCustomer(customer);
}
getCSVForTryton() {
return this.apiImplementation.getCSVForTryton();
}
}
export default Api;