Skip to content

Commit f678343

Browse files
committed
Fix: Update Stock model import path
1 parent 06d1f56 commit f678343

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/routes/stocks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const express = require('express');
22
const router = express.Router();
3-
const { Stock } = require('../models/stock');
3+
const Stock = require('../models/Stock');
44
const stockPriceService = require('../services/stockPriceService');
55
const { Op } = require('sequelize');
66
const { finnhubClient } = require('../config/finnhub');

0 commit comments

Comments
 (0)