ApiAdmin/Application/Home/Controller/IndexController.class.php
2017-04-15 22:04:50 +08:00

10 lines
160 B
PHP

<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function index(){
echo 'welcome';
}
}