BiliHelper-personal/index.php
2020-02-08 17:40:38 +08:00

20 lines
315 B
PHP

<?php
/**
* Website: https://mudew.com/
* Author: Lkeme
* License: The MIT License
* Email: Useri@live.cn
* Updated: 2020 ~ 2021
*/
require 'vendor/autoload.php';
$filename = isset($argv[1]) ? $argv[1] : 'user.conf';
$app = new BiliHelper\Core\App();
$app->load(__DIR__, $filename);
$app->start();