mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-03 16:24:28 +08:00
15 lines
205 B
PHP
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();
|
|
}
|
|
}
|