9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
import { User, UserInit, Org, OrgInit } from '@kevisual/code-center-module/models';
|
|
|
|
export { User, Org };
|
|
|
|
export const initModels = () => {
|
|
OrgInit();
|
|
UserInit();
|
|
};
|