mirror of https://github.com/pixelfed/pixelfed.git
10 lines
161 B
PHP
10 lines
161 B
PHP
|
<?php
|
||
|
|
||
|
use App\Services\ConfigCacheService;
|
||
|
|
||
|
if (!function_exists('config_cache')) {
|
||
|
function config_cache($key) {
|
||
|
return ConfigCacheService::get($key);
|
||
|
}
|
||
|
}
|