Personal blog written from scratch using Node.js, Bootstrap, and MySQL. https://jrtechs.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
236 B

  1. var Promise = require('promise');
  2. const sql = require('../utils/sql');
  3. module.exports=
  4. {
  5. main: function(res, fileName)
  6. {
  7. return new Promise(function(resolve, reject)
  8. {
  9. resolve();
  10. });
  11. }
  12. };