10 lines
180 B
Kotlin
10 lines
180 B
Kotlin
|
|
package com.longnh15.heimdall.common
|
||
|
|
|
||
|
|
import kotlinx.serialization.json.Json
|
||
|
|
|
||
|
|
object GlobalConfig {
|
||
|
|
val json = Json {
|
||
|
|
ignoreUnknownKeys = true
|
||
|
|
isLenient
|
||
|
|
}
|
||
|
|
}
|