2025-05-28 14:21:09 +00:00
|
|
|
import { authAPIModule } from "@erp/auth/api";
|
2025-06-11 15:13:44 +00:00
|
|
|
import { invoicesAPIModule } from "@erp/customer-invoices/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-05-28 14:21:09 +00:00
|
|
|
registerModule(authAPIModule);
|
2025-06-11 13:13:21 +00:00
|
|
|
registerModule(invoicesAPIModule);
|
2025-05-09 10:45:32 +00:00
|
|
|
};
|