mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
6eaf0eaa56
Forgot to add these in #3867
14 lines
195 B
PHP
Executable file
14 lines
195 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/**
|
|
* Remove all items from the cache
|
|
*/
|
|
|
|
require __DIR__ . '/../lib/bootstrap.php';
|
|
|
|
$rssBridge = new RssBridge();
|
|
|
|
$cache = RssBridge::getCache();
|
|
|
|
$cache->clear();
|