Skip to content

Commit

Permalink
fix require path to not use node_module
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro100 committed Apr 12, 2024
1 parent 460db86 commit 1b6f0c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion functions/feed.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const GBFS = require('gbfs-validator');
const GBFS = require('../gbfs-validator/gbfs')
const { defaultApplicationResponseHeaders, getCorsResponse } = require('../common/http-utils');

exports.handler = function (event, context, callback) {
Expand Down
2 changes: 1 addition & 1 deletion functions/validator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const GBFS = require('gbfs-validator')
const GBFS = require('../gbfs-validator/gbfs')
const { defaultApplicationResponseHeaders, getCorsResponse } = require('../common/http-utils');

exports.handler = function (event, context, callback) {
Expand Down

0 comments on commit 1b6f0c6

Please sign in to comment.