Files
hyperf-micro-svc/app/Service/Api/BaseApiService.php
2025-09-26 17:59:26 +08:00

16 lines
237 B
PHP

<?php
/**
* This service file is part of item.
*
* @author ctexthuang
* @contact ctexthuang@qq.com
*/
declare(strict_types=1);
namespace App\Service\Api;
abstract class BaseApiService
{
abstract public function handle();
}