12 lines
203 B
PHP
12 lines
203 B
PHP
<?php
|
|
|
|
namespace App\Cache\Set;
|
|
|
|
use App\Cache\Base\SetBaseCache;
|
|
|
|
class TronWalletAddressSetCache extends SetBaseCache
|
|
{
|
|
protected string $set_name = 'TronWalletAddressSetCache:'; //缓存前缀
|
|
|
|
}
|