mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-01 10:48:53 +00:00
15 lines
233 B
PHP
Executable File
15 lines
233 B
PHP
Executable File
<?php
|
|
|
|
require("lib/innodb/config.php");
|
|
require_once("lib/backfill.php");
|
|
|
|
if (isset($argv[1]))
|
|
$groupName = $argv[1];
|
|
else
|
|
$groupName = '';
|
|
|
|
$backfill = new Backfill();
|
|
$backfill->backfillAllGroups($groupName);
|
|
|
|
?>
|