mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
9 lines
256 B
JavaScript
9 lines
256 B
JavaScript
const {Signale} = require('signale');
|
|
|
|
module.exports = {
|
|
global: new Signale({scope: 'Global '}),
|
|
migrate: new Signale({scope: 'Migrate '}),
|
|
express: new Signale({scope: 'Express '}),
|
|
access: new Signale({scope: 'Access '})
|
|
};
|