all repos — dbee @ b22378184073ce48c49767ed1031a99e1e83166c

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;