Files
nocobase/packages/server/src/__tests__/plugins/plugin3.ts
T
2021-09-14 11:09:26 +08:00

10 lines
162 B
TypeScript

import { Plugin } from '../../plugin';
export default class Plugin3 extends Plugin {
async load() {
this.app.db.table({
name: 'tests',
});
}
}