default.js 168 Bytes
Newer Older
Athanasios's avatar
Athanasios committed
1
2
3
4
5
const config = require('../config');
const fs = require('fs');

const handle = (req, res) => {

Athanasios's avatar
Athanasios committed
6
  throw new Error("not found");
Athanasios's avatar
Athanasios committed
7
8
9
10

};

module.exports = handle;