更新Google登录

This commit is contained in:
2024-12-01 21:27:39 +08:00
parent 784427cfba
commit cc7a65e016
9 changed files with 147 additions and 73 deletions

View File

@@ -131,7 +131,7 @@ data class DictItem(
@SerializedName("key")
val key: String,
@SerializedName("value")
val value: String,
val value: Any,
@SerializedName("desc")
val desc: String,
)
@@ -400,6 +400,11 @@ interface RaveNowAPI {
@Query("key") key: String
): Response<DataContainer<DictItem>>
@GET("dicts")
suspend fun getDicts(
@Query("keys") keys: String
): Response<ListContainer<DictItem>>
@POST("captcha/generate")
suspend fun generateCaptcha(
@Body body: CaptchaRequestBody