1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 03:50:56 +08:00
2020-09-17 21:29:29 +08:00

19 lines
265 B
PHP

<?php
namespace App\Services\Logic\Help;
use App\Caches\HelpList as HelpListCache;
use App\Services\Logic\Service;
class HelpList extends Service
{
public function handle()
{
$cache = new HelpListCache();
return $cache->get();
}
}