all repos — dbee @ ef17c0ff8508c7cd415693ebcd3e97003175e7dd

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;