A simple file sharing site with an easy to use API and online panel.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

10 строки
324B

  1. const express = require('express');
  2. const router = express.Router();
  3. const path = require('path');
  4. const authenticate = require('../util/auth/authenticateRequest');
  5. router.get('/', authenticate(), function(req, res) {
  6. res.sendFile(path.join(__dirname, '../../public/views', 'panel.html'));
  7. });
  8. module.exports = router;