mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-05 22:34:51 +00:00
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);
|
|
}
|
|
}
|