randydev commited on
Commit
d055d13
·
verified ·
1 Parent(s): d59fcbc

Update middleware/midware.js

Browse files
Files changed (1) hide show
  1. middleware/midware.js +1 -2
middleware/midware.js CHANGED
@@ -1,9 +1,8 @@
1
  import { Database } from '../database/database.js';
2
  import { rateLimit } from 'express-rate-limit';
3
- import { v4 as uuidv4 } from 'uuid';
4
  import uuid from 'uuid';
5
 
6
- const uuidv4 = uuid.v4;
7
 
8
  const authenticateApiKey = async (req, res, next) => {
9
  const apiKey = req.headers['x-api-key'];
 
1
  import { Database } from '../database/database.js';
2
  import { rateLimit } from 'express-rate-limit';
 
3
  import uuid from 'uuid';
4
 
5
+ const myUUID = uuid.v4();
6
 
7
  const authenticateApiKey = async (req, res, next) => {
8
  const apiKey = req.headers['x-api-key'];