1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-21 23:32:39 +00:00
pixelfed/app/helpers.php
Daniel Supernault c6848e99a4
Add helpers
2021-05-07 21:37:10 -06:00

9 lines
161 B
PHP

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