mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-06-08 02:04:04 +08:00
14 lines
256 B
Java
14 lines
256 B
Java
package xyz.playedu.api.service;
|
|
|
|
import xyz.playedu.api.types.ImageCaptchaResult;
|
|
|
|
import java.io.IOException;
|
|
|
|
public interface ImageCaptchaService {
|
|
|
|
ImageCaptchaResult generate() throws IOException;
|
|
|
|
boolean verify(String key, String code);
|
|
|
|
}
|