From 3146f5ac4a1cee3a392dba01120ee79f67ee449a Mon Sep 17 00:00:00 2001 From: Abdullah Alqahtani <0xqahta0@gmail.com> Date: Sat, 28 Dec 2024 12:55:11 +0300 Subject: [PATCH] fix(constants.go): update AvailableYears to include years from 2018 to 2023 for accurate stock data availability --- internal/constants/constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/constants/constants.go b/internal/constants/constants.go index 88f9c6c..1bcbbde 100644 --- a/internal/constants/constants.go +++ b/internal/constants/constants.go @@ -28,4 +28,4 @@ const ( ) // Available years for stock data -var AvailableYears = []string{"2021", "2022", "2023", "2024", "2025"} \ No newline at end of file +var AvailableYears = []string{"2018", "2019", "2020", "2021", "2022", "2023"} \ No newline at end of file