Files
ulthon_admin/app/api/controller/Captcha.php
2019-08-24 13:42:57 +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();
}
}