pixelfed/app/helpers.php

10 lines
161 B
PHP
Raw Permalink Normal View History

2021-05-08 03:37:10 +00:00
<?php
use App\Services\ConfigCacheService;
if (!function_exists('config_cache')) {
function config_cache($key) {
return ConfigCacheService::get($key);
}
}