make parsetime exportable

This commit is contained in:
Safwan
2025-07-17 13:04:47 +05:00
parent d22a0f25de
commit 95cea97d34
+1 -1
View File
@@ -173,7 +173,7 @@ func parseBool(value string) bool {
return result
}
func parseTime(value string) time.Time {
func ParseTime(value string) time.Time {
if value == "" {
return time.Time{} // Return zero time if value is empty
}