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.

9 lines
194 B

  1. const utils = require('../utils/utils.js');
  2. const sql = require('../utils/sql');
  3. module.exports=
  4. {
  5. main: function(res)
  6. {
  7. utils.include(res, "./admin/addCategory.html");
  8. }
  9. };