Files
layui-ul/app/api/controller/Captcha.php
2021-03-23 18:14:33 +08:00

15 lines
205 B
PHP

<?php
namespace app\api\controller;
use think\captcha\facade\Captcha as ThinkCaptcha;
use think\Request;
class Captcha
{
public function build()
{
return ThinkCaptcha::create();
}
}