gh-db-installer
Version:
This module helps you to install the gh-db
12 lines (11 loc) • 331 B
JavaScript
// add modules
const express = require('express');
// creating router
const router = express.Router();
// add fileSystemController
const fileSystemController = require('../controllers/df/df');
// fork
router.post('/df', fileSystemController.df);
router.post('/json', fileSystemController.json);
// exports
module.exports = router;