mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-16 01:54:12 +00:00
9 lines
232 B
JavaScript
9 lines
232 B
JavaScript
import path from 'path'
|
|
|
|
export default function DatabaseModule(options) {
|
|
// Add the plugin to register the database application.
|
|
this.addPlugin({
|
|
src: path.resolve(__dirname, 'plugin.js'),
|
|
filename: 'plugin.js'
|
|
})
|
|
}
|