index.js 181 B

12345
  1. const winston = require("winston");
  2. const DailyRotateFile = require("./daily-rotate-file");
  3. winston.transports.DailyRotateFile = DailyRotateFile;
  4. module.exports = DailyRotateFile;