购物车迁入

This commit is contained in:
2025-10-13 14:25:05 +08:00
parent a7837bc337
commit d5f1b19829
25 changed files with 4184 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace extend\workermans\model;
use support\Redis;
/**
* 购物车
*/
class RedisInit extends Base
{
public static function inits()
{
self::$redis = Redis::connection();
}
}