fix: remove debug

This commit is contained in:
ikechan8370 2024-07-07 18:02:41 +08:00
parent 29dfc1590b
commit a6f570e4f0

View File

@ -159,23 +159,4 @@ fun Routing.otherAction() {
respond(true, Status.Ok, "success")
}
getOrPost("/dt") {
val version = PlatformUtils.getQQVersionCode()
val qua = PlatformUtils.getQUA()
call.respondText(Json.encodeToString(
buildJsonObject {
put("qua", JsonPrimitive(qua))
put("version", JsonPrimitive(version))
}
), ContentType.Application.Json)
}
getOrPost("/mmkv") {
val key = fetchOrThrow("key")
call.respondText(Json.encodeToString(
buildJsonObject {
put("value", JsonPrimitive(Dtc.mmKVValue(key)))
}
), ContentType.Application.Json)
}
}