gh-db-installer
Version:
This module helps you to install the gh-db
11 lines (10 loc) • 306 B
JavaScript
// add modules
const express = require('express');
// crate router
const router = express.Router();
// add collection controller
const collectionsController = require('../controllers/collection/collections');
// route
router.post('/', collectionsController.collection);
// exports
module.exports = router;