<?php

namespace app\admin\controller;

use think\facade\Db;

class Test extends Base
{
    public function index()
    {
        return $this->success([], "ζˆεŠŸδΊ†");
    }

    public function db()
    {
        return Db::execute('SELECT 1');
    }

    public function vir()
    {
        return getVirRootDir();
    }

}