mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
5 lines
166 B
JavaScript
5 lines
166 B
JavaScript
const argv = require('yargs').argv
|
|
const path = require('path')
|
|
const config_path = path.resolve(argv.config || './config.js')
|
|
|
|
module.exports = require(config_path)
|