fix error
This commit is contained in:
parent
aead6a8358
commit
bca14aa71c
2 changed files with 4 additions and 0 deletions
|
|
@ -2,6 +2,7 @@ import express from 'express';
|
|||
import cors from 'cors';
|
||||
import dotenv from 'dotenv';
|
||||
import { medicationRouter } from './services/medications/index.js';
|
||||
import { shiftsRouter } from './services/shifts/index.js';
|
||||
import { shiftRunQuery } from './services/shiftConnection.js';
|
||||
import { validateMedicationApiKey, validateShiftSyncApiKey } from './middleware/auth.js';
|
||||
dotenv.config();
|
||||
|
|
|
|||
3
api/services/shifts/index.js
Normal file
3
api/services/shifts/index.js
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import express from 'express';
|
||||
|
||||
export const shiftsRouter = express.Router();
|
||||
Loading…
Reference in a new issue