2022-01-27 19:18:31 +01:00
|
|
|
const {
|
|
|
|
getAppDB,
|
|
|
|
getDevAppDB,
|
|
|
|
getProdAppDB,
|
|
|
|
getAppId,
|
|
|
|
updateAppId,
|
2022-01-28 01:05:39 +01:00
|
|
|
doInAppContext,
|
2022-09-28 09:56:45 +02:00
|
|
|
doInTenant,
|
2022-05-30 15:06:42 +02:00
|
|
|
doInContext,
|
2022-01-31 18:53:19 +01:00
|
|
|
} = require("./src/context")
|
2022-01-27 19:18:31 +01:00
|
|
|
|
2022-09-28 09:56:45 +02:00
|
|
|
const identity = require("./src/context/identity")
|
|
|
|
|
2022-01-27 19:18:31 +01:00
|
|
|
module.exports = {
|
|
|
|
getAppDB,
|
|
|
|
getDevAppDB,
|
|
|
|
getProdAppDB,
|
|
|
|
getAppId,
|
|
|
|
updateAppId,
|
2022-01-28 01:05:39 +01:00
|
|
|
doInAppContext,
|
2022-09-28 09:56:45 +02:00
|
|
|
doInTenant,
|
|
|
|
identity,
|
2022-05-30 15:06:42 +02:00
|
|
|
doInContext,
|
2022-01-27 19:18:31 +01:00
|
|
|
}
|