mirror of
https://e.coding.net/circlecloud/MinecraftAccount.git
synced 2024-11-17 00:58:55 +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 ();
|
||
|
}
|
||
|
}
|