mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
14 lines
340 B
Kotlin
14 lines
340 B
Kotlin
|
package com.github.libretube.db
|
||
|
|
||
|
import androidx.room.TypeConverter
|
||
|
import kotlinx.datetime.LocalDate
|
||
|
import kotlinx.datetime.toLocalDate
|
||
|
|
||
|
object Converters {
|
||
|
@TypeConverter
|
||
|
fun localDateToString(localDate: LocalDate?) = localDate?.toString()
|
||
|
|
||
|
@TypeConverter
|
||
|
fun stringToLocalDate(string: String?) = string?.toLocalDate()
|
||
|
}
|