com.github.fangzhengjin.common.component.verification.service.VerificationGeneratorProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-verification-code-spring-boot-starter Show documentation
Show all versions of common-verification-code-spring-boot-starter Show documentation
common-verification-code-spring-boot-starter
package com.github.fangzhengjin.common.component.verification.service
import com.github.fangzhengjin.common.component.verification.vo.VerificationCode
/**
* @version V1.0
* @title: VerificationGeneratorProvider
* @package com.github.fangzhengjin.common.component.verification.service
* @description: 验证码创建提供者
* @author fangzhengjin
* @date 2019/2/26 16:56
*/
interface VerificationGeneratorProvider {
fun render(): VerificationCode
}