index.js - seedlinux - Torrent indexing tool opensource torrents with share ratio's etc.
 (HTM) git clone git://jay.scot/seedlinux
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       index.js (394B)
       ---
            1 'use strict';
            2 
            3 const express = require('express');
            4 const router = express.Router();
            5 const torrent_controller = require('../controllers/torrents_controller');
            6 
            7 router.get('/', torrent_controller.index);
            8 router.get('/details/:id', torrent_controller.detail);
            9 router.get('/update/:id', torrent_controller.update);
           10 router.get('/download/:id', torrent_controller.download);
           11 module.exports = router;