8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
|
|
import customerModelInit from "./customer.model";
|
||
|
|
|
||
|
|
export * from "./customer.model";
|
||
|
|
export * from "./customer.repository";
|
||
|
|
|
||
|
|
// Array de inicializadores para que registerModels() lo use
|
||
|
|
export const models = [customerModelInit];
|