c22b90c7f4
Add barrelsby as a dev dependency with a `generate-barrels` npm script and a `barrelesby.json` config targeting `./src`. This automates creation of barrel/index files to simplify imports across the project.
6 lines
157 B
TypeScript
6 lines
157 B
TypeScript
// models 顶层 barrel export - 集中导出所有分类
|
|
export * from "./auth";
|
|
export * from "./chat";
|
|
export * from "./metrics";
|
|
export * from "./user";
|