From a37fd400a8ff207b8000f1073d422b5bc9be616f Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Mon, 20 May 2024 21:20:25 +0200 Subject: [PATCH] More precise calendar imports --- telegram-bot-api/src/Telegram/Bot/API/Types/Birthdate.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/telegram-bot-api/src/Telegram/Bot/API/Types/Birthdate.hs b/telegram-bot-api/src/Telegram/Bot/API/Types/Birthdate.hs index c157152..5d172af 100644 --- a/telegram-bot-api/src/Telegram/Bot/API/Types/Birthdate.hs +++ b/telegram-bot-api/src/Telegram/Bot/API/Types/Birthdate.hs @@ -3,7 +3,8 @@ module Telegram.Bot.API.Types.Birthdate where import Data.Aeson (FromJSON (..), ToJSON (..)) -import Data.Time.Calendar +import Data.Time.Calendar.MonthDay (DayOfMonth, MonthOfYear) +import Data.Time.Calendar.OrdinalDate (Year) import GHC.Generics (Generic) import Telegram.Bot.API.Internal.Utils