IYUUPlus/bin/move.php

13 lines
358 B
PHP
Raw Normal View History

2021-03-04 19:33:54 +00:00
<?php
2022-10-03 03:03:11 +00:00
require_once dirname(__DIR__) . '/vendor/autoload.php';
2021-08-31 07:59:55 +00:00
require_once ROOT_PATH . '/app/functions.php';
2021-03-04 19:33:54 +00:00
require_once ROOT_PATH . '/src/helper.php';
2022-10-03 03:03:11 +00:00
echo microtime(true) . ' 当前脚本路径:' . __FILE__ . PHP_EOL;
2021-03-04 19:33:54 +00:00
use IYUU\Reseed\MoveTorrent;
use Workerman\Autoloader;
Autoloader::setRootPath(ROOT_PATH);
MoveTorrent::init();
MoveTorrent::call();