Update middleware/midware.js
Browse files- 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
|
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'];
|