feat(ui/jvm): add proper captcha stub

This commit is contained in:
Cilly Leang 2026-01-29 00:53:23 +11:00
parent 3efcc3ce4d
commit 33ed389f0f
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -2,7 +2,12 @@ package moe.lava.neon.ui
import androidx.compose.runtime.Composable import androidx.compose.runtime.Composable
import moe.lava.neon.core.api.ApiClient import moe.lava.neon.core.api.ApiClient
import moe.lava.neon.core.api.captcha.CaptchaResponse
@Composable @Composable
// TODO // TODO
actual fun CaptchaBinder(api: ApiClient) { } actual fun CaptchaBinder(api: ApiClient) {
api.setCaptchaHandler {
CaptchaResponse.Failed(NotImplementedError())
}
}