2025-08-11 17:49:52 +00:00
|
|
|
import customerInvoicesAPIModule from "@erp/customer-invoices/api";
|
|
|
|
|
import customersAPIModule from "@erp/customers/api";
|
|
|
|
|
|
2025-05-28 14:21:09 +00:00
|
|
|
import { registerModule } from "./lib";
|
2025-05-09 10:45:32 +00:00
|
|
|
|
|
|
|
|
export const registerModules = () => {
|
2025-08-11 17:49:52 +00:00
|
|
|
//registerModule(authAPIModule);
|
|
|
|
|
registerModule(customersAPIModule);
|
2025-06-12 06:55:17 +00:00
|
|
|
registerModule(customerInvoicesAPIModule);
|
2025-05-09 10:45:32 +00:00
|
|
|
};
|