mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-25 02:52:15 +03:00
15 lines
262 B
PHP
Executable file
15 lines
262 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/**
|
|
* Remove all items from the cache
|
|
*/
|
|
|
|
require __DIR__ . '/../lib/bootstrap.php';
|
|
require __DIR__ . '/../lib/config.php';
|
|
|
|
$container = require __DIR__ . '/../lib/dependencies.php';
|
|
|
|
$cache = $container['cache'];
|
|
|
|
$cache->clear();
|