feat : login first

This commit is contained in:
2025-09-26 17:59:26 +08:00
parent 5890122a37
commit 7d09a6028a
7 changed files with 236 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
declare(strict_types=1);
namespace App\Controller\Api;
use App\Annotation\ResponseFormat;
use App\Controller\AbstractController;
use Hyperf\HttpServer\Annotation\Controller;
use Hyperf\HttpServer\Annotation\RequestMapping;
#[Controller(prefix: "api/login")]
#[ResponseFormat('api')]
class LoginController extends AbstractController
{
/**
* @return array
*/
#[RequestMapping(path: "list", methods: "GET")]
public function login()
{
}
}