budibase/packages/server/src/integrations/index.js

15 lines
233 B
JavaScript
Raw Normal View History

2020-11-26 15:43:56 +01:00
const postgres = require("./postgres")
const DEFINITIONS = {
POSTGRES: postgres.schema,
}
const INTEGRATIONS = {
POSTGRES: postgres.integration,
}
module.exports = {
definitions: DEFINITIONS,
integrations: INTEGRATIONS,
}