mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
10 lines
157 B
Kotlin
10 lines
157 B
Kotlin
package com.github.libretube.api
|
|
|
|
import kotlinx.serialization.json.Json
|
|
|
|
object JsonHelper {
|
|
val json = Json {
|
|
ignoreUnknownKeys = true
|
|
}
|
|
}
|