bg_script.js 323 B

12345678910111213141516
  1. 'use strict';
  2. (function () {
  3. const gui = require('nw.gui'),
  4. EventEmitter = require('myevents'),
  5. req = require('request'),
  6. downFile = require('downfile');
  7. global = nw.global ;
  8. gui.App.on('open', function (url) {
  9. });
  10. EventEmitter.on('downfile', function () {
  11. });
  12. })();