mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-21 03:17:05 +08:00
17 lines
191 B
PHP
17 lines
191 B
PHP
<?php
|
|
|
|
namespace App\Http\Home\Controllers;
|
|
|
|
class IndexController extends Controller
|
|
{
|
|
|
|
/**
|
|
* @Get("/", name="home.index")
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
|
|
}
|
|
|
|
}
|