<?php 

namespace {{NAMESPACE}};


use Swoft\Http\Server\Bean\Annotation\Controller;
use Swoft\Http\Server\Bean\Annotation\RequestMapping;
use Swoft\Http\Server\Bean\Annotation\RequestMethod;

/**
 * @Controller(prefix="")
 */
class {{CLASS_NAME}} extends BaseController
{

    /**
     * @RequestMapping(route="", method="")
     *
     * @return void
     */
    public function index() 
    {

    }

}