diff --git a/Memento-iOS/Memento-iOS.xcodeproj/project.pbxproj b/Memento-iOS/Memento-iOS.xcodeproj/project.pbxproj index c6fc291..3adc3d5 100644 --- a/Memento-iOS/Memento-iOS.xcodeproj/project.pbxproj +++ b/Memento-iOS/Memento-iOS.xcodeproj/project.pbxproj @@ -41,7 +41,7 @@ Source/Data/MCalendarEventList.swift, Source/Data/MEventDataSource.swift, Source/Presentation/Add/AddSchedule/Model/DateTimeSelection.swift, - Source/Presentation/Add/AddSchedule/Protocols/DateTimeProtocol.swift, + Source/Presentation/Add/AddSchedule/Model/RepeatType.swift, Source/Presentation/Add/AddSchedule/View/AddEventTitleView.swift, Source/Presentation/Add/AddSchedule/View/AddScheduleView.swift, Source/Presentation/Add/AddSchedule/ViewModel/AddEventTitleViewModel.swift, diff --git a/Memento-iOS/Memento-iOS/Source/Presentation/Add/AddSchedule/Protocols/DateTimeProtocol.swift b/Memento-iOS/Memento-iOS/Source/Presentation/Add/AddSchedule/Protocols/DateTimeProtocol.swift deleted file mode 100644 index fb83bf9..0000000 --- a/Memento-iOS/Memento-iOS/Source/Presentation/Add/AddSchedule/Protocols/DateTimeProtocol.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// DateTimeProtocol.swift -// Memento-iOS -// -// Created by RAFA on 1/18/25. -// - -import Foundation - -protocol DateTimeFormatterProtocol { - func formatDate(_ date: Date, format: String, locale: Locale) -> String -} - -protocol DateTimeValidatorProtocol { - func validateDateRange(start: Date, end: Date) -> Bool - func adjustToStartOfDay(_ date: Date) -> Date -}