mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-09-24 22:05:20 +01: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 '})
|
|
};
|