10 lines
180 B
Kotlin
Raw Normal View History

2026-06-17 16:19:10 +07:00
package com.longnh15.heimdall.common
import kotlinx.serialization.json.Json
object GlobalConfig {
val json = Json {
ignoreUnknownKeys = true
isLenient
}
}