Skip to content

Commit

Permalink
Update index.js (#405)
Browse files Browse the repository at this point in the history
Switch import to dynamoUtil
  • Loading branch information
marklise authored Jul 4, 2024
1 parent 9bd8e45 commit e873aa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lambda/deletePass/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const AWS = require('aws-sdk');
const jwt = require('jsonwebtoken');

const { dynamodb, runQuery, TABLE_NAME, TIMEZONE } = require('../dynamoUtil');
const { sendResponse, PASS_HOLD_STATUS, PASS_CANCELLED_STATUS } = require('../responseUtil');
const { dynamodb, runQuery, TABLE_NAME, TIMEZONE, PASS_HOLD_STATUS, PASS_CANCELLED_STATUS } = require('../dynamoUtil');
const { sendResponse } = require('../responseUtil');
const { decodeJWT, resolvePermissions } = require('../permissionUtil');
const { DateTime } = require('luxon');
const { logger } = require('../logger');
Expand Down

0 comments on commit e873aa5

Please sign in to comment.