Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
fix: remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ikechan8370 committed Jul 7, 2024
1 parent 29dfc15 commit a6f570e
Showing 1 changed file with 0 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

0 comments on commit a6f570e

Please sign in to comment.