mirror of
https://github.com/pablouser1/ProxiTok.git
synced 2024-12-06 19:27:30 +01:00
8 lines
116 B
PHP
8 lines
116 B
PHP
<?php
|
|
namespace App\Constants;
|
|
|
|
abstract class CacheMethods {
|
|
const JSON = 'json';
|
|
const REDIS = 'redis';
|
|
}
|