generated from tailored/app-template
init
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
// @ts-ignore
|
||||
export const basename = DEV_SERVER ? '/' : BASE_NAME;
|
||||
9
src/modules/mark.ts
Normal file
9
src/modules/mark.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Mark, markModelInit } from '@kevisual/mark';
|
||||
|
||||
export { Mark, markModelInit };
|
||||
|
||||
export const init = () => {
|
||||
markModelInit({
|
||||
tableName: '',
|
||||
});
|
||||
};
|
||||
@@ -1,3 +0,0 @@
|
||||
import { message } from '@kevisual/system-ui/dist/message';
|
||||
|
||||
export { message };
|
||||
@@ -1,3 +0,0 @@
|
||||
import { QueryClient } from '@kevisual/query';
|
||||
|
||||
export const query = new QueryClient();
|
||||
1
src/modules/sequelize.ts
Normal file
1
src/modules/sequelize.ts
Normal file
@@ -0,0 +1 @@
|
||||
export { sequelize, redis } from '@kevisual/code-center-module';
|
||||
9
src/modules/user.ts
Normal file
9
src/modules/user.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { sequelize, User, UserInit, Org, OrgInit } from '@kevisual/code-center-module';
|
||||
|
||||
export { sequelize, User, UserInit, Org, OrgInit };
|
||||
|
||||
export const init = () => {
|
||||
UserInit();
|
||||
OrgInit();
|
||||
};
|
||||
init();
|
||||
Reference in New Issue
Block a user