mirror of
https://github.com/apgzs/cool-admin-api.git
synced 2025-04-05 03:04:57 +08:00
23 lines
376 B
TypeScript
23 lines
376 B
TypeScript
import { EggPlugin } from 'egg';
|
|
|
|
const plugin: EggPlugin = {
|
|
typeorm: {
|
|
enable: true,
|
|
package: 'egg-ts-typeorm',
|
|
},
|
|
jwt: {
|
|
enable: true,
|
|
package: 'egg-jwt',
|
|
},
|
|
oss: {
|
|
enable: true,
|
|
package: 'egg-oss',
|
|
},
|
|
redis: {
|
|
enable: true,
|
|
package: 'egg-redis',
|
|
},
|
|
};
|
|
|
|
export default plugin;
|