all repos — dbee @ 6bc91d7e907992c8beeea717c98a830b183af97a

Move PostgreSQL backups using S3

libs/config/get.js (view raw)

1const { getConfig } = require("./_utils");
2const _get = require("lodash/get");
3
4const get = objectPath => {
5  const config = getConfig();
6  return _get(config, objectPath);
7};
8
9module.exports = get;