UNPKG

530 BJavaScriptView Raw
1/**
2 * joola.io
3 *
4 * Copyright Joola Smart Solutions, Ltd. <info@joo.la>
5 *
6 * Licensed under GNU General Public License 3.0 or later.
7 * Some rights reserved. See LICENSE, AUTHORS.
8 *
9 * @license GPL-3.0+ <http://spdx.org/licenses/GPL-3.0+>
10 */
11
12exports.index = {
13 name: 'cache/index',
14 description: 'Default return path for cache',
15 inputs: commonInputs,
16 outputExample: {},
17 permission: ['access_system'],
18 run: function (req, res) {
19 var response = {};
20 return res.json(response);
21 }
22};
\No newline at end of file