Files
ulthon_information/app/api/controller/Captcha.php
2020-08-07 23:49:50 +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();
}
}