pixelfed/app/helpers.php
Daniel Supernault c6848e99a4
Add helpers
2021-05-07 21:37:10 -06:00

10 lines
161 B
PHP

<?php
use App\Services\ConfigCacheService;
if (!function_exists('config_cache')) {
function config_cache($key) {
return ConfigCacheService::get($key);
}
}