mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 01:25:28 +03:00
15 lines
195 B
Text
15 lines
195 B
Text
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Remove all items from the cache
|
||
|
*/
|
||
|
|
||
|
require __DIR__ . '/../lib/bootstrap.php';
|
||
|
|
||
|
$rssBridge = new RssBridge();
|
||
|
|
||
|
$cache = RssBridge::getCache();
|
||
|
|
||
|
$cache->clear();
|