first commit

This commit is contained in:
yy
2026-09-11 17:34:14 +08:00
commit dfb943919d
622 changed files with 26659 additions and 0 deletions
@@ -0,0 +1,15 @@
package com.metalloop.common.auth.handler;
public class DefaultVerifyCodeHandler implements VerifyCodeHandler{
@Override
public boolean createVerifyCode(String phoneNum) {
return false;
}
@Override
public boolean checkVerifyCode(String phoneNum, String verifyCode) {
return false;
}
}