Files
hlaeja-device-api/src/main/kotlin/ltd/hlaeja/util/Mapper.kt
Swordsteel 0e5c4e3e9f update for common plugin v0.2.0
- cleanup Mapper.kt
- update build.gradle.kts to use certificate plugin
- update catalog version
2024-12-10 22:37:46 +01:00

11 lines
255 B
Kotlin

package ltd.hlaeja.util
import ltd.hlaeja.library.deviceConfiguration.Node
fun Node.Response.toDeviceResponse(): Map<String, String> {
return mapOf(
"version" to timestamp.toEpochSecond().toString(),
"data" to configuration,
)
}