2020-11-26 15:43:56 +01:00
|
|
|
const postgres = require("./postgres")
|
2020-11-26 17:46:36 +01:00
|
|
|
const dynamodb = require("./dynamodb")
|
|
|
|
const mongodb = require("./mongodb")
|
|
|
|
// const redis = require("./redis")
|
|
|
|
// const couchdb = require("./couchdb")
|
|
|
|
// const elasticsearch = require("./elasticsearch")
|
|
|
|
// const s3 = require("./s3")
|
2020-11-26 15:43:56 +01:00
|
|
|
|
|
|
|
const DEFINITIONS = {
|
|
|
|
POSTGRES: postgres.schema,
|
2020-11-26 17:46:36 +01:00
|
|
|
DYNAMODB: dynamodb.schema,
|
|
|
|
MONGODB: mongodb.schema,
|
2020-11-26 15:43:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const INTEGRATIONS = {
|
|
|
|
POSTGRES: postgres.integration,
|
2020-11-26 17:46:36 +01:00
|
|
|
DYNAMODB: dynamodb.integration,
|
|
|
|
MONGODB: mongodb.integration,
|
2020-11-26 15:43:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
definitions: DEFINITIONS,
|
|
|
|
integrations: INTEGRATIONS,
|
|
|
|
}
|