mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
9 lines
257 B
JavaScript
9 lines
257 B
JavaScript
|
const _ = require('lodash');
|
||
|
const chalk = require('chalk');
|
||
|
|
||
|
module.exports = function () {
|
||
|
var arr = _.values(arguments);
|
||
|
arr.unshift(chalk.blue.bold('[') + chalk.yellow.bold('Backend API') + chalk.blue.bold(']'));
|
||
|
console.log.apply(null, arr);
|
||
|
};
|