mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
12 lines
390 B
JavaScript
12 lines
390 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 '}),
|
|
nginx: new Signale({scope: 'Nginx '}),
|
|
ssl: new Signale({scope: 'SSL '}),
|
|
import: new Signale({scope: 'Importer'}),
|
|
};
|