mirror of
https://e.coding.net/circlecloud/MinecraftAccount.git
synced 2025-11-24 21:26:09 +00:00
13 lines
216 B
PHP
13 lines
216 B
PHP
<?php
|
|
|
|
namespace Home\Controller;
|
|
|
|
use Think\Controller;
|
|
|
|
class CommonController extends Controller {
|
|
public function Verify() {
|
|
ob_clean ();
|
|
$Verify = new \Think\Verify ();
|
|
$Verify->entry ();
|
|
}
|
|
} |