Skip to content

Commit

Permalink
add a folder app
Browse files Browse the repository at this point in the history
  • Loading branch information
bardarz committed Oct 21, 2019
1 parent d05b96a commit a6c7b21
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion handler.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

const serverless = require('serverless-http');
const app = require('./app');
const app = require('./src/app');

module.exports.main = serverless(app);

Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const debug =require('debug')('server:debug');
const http = require('http');
const app = require('./app');
const app = require('./src/app');

const server = http.createServer(app);
const PORT = process.env.NODE_PORT || 5000;
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit a6c7b21

Please sign in to comment.