mirror of
https://github.com/friendica/friendica
synced 2024-12-03 04:55:21 +01:00
10 lines
147 B
PHP
10 lines
147 B
PHP
<?php
|
|
namespace Friendica\Worker;
|
|
|
|
require_once("include/tags.php");
|
|
|
|
class TagUpdate {
|
|
public static function execute() {
|
|
update_items();
|
|
}
|
|
}
|