mirror of
https://github.com/nocobase/nocobase.git
synced 2026-09-21 05:44:51 +08:00
10 lines
162 B
TypeScript
10 lines
162 B
TypeScript
import { Plugin } from '../../plugin';
|
|
|
|
export default class Plugin3 extends Plugin {
|
|
async load() {
|
|
this.app.db.table({
|
|
name: 'tests',
|
|
});
|
|
}
|
|
}
|