mirror of
https://github.com/lkeme/BiliHelper-personal.git
synced 2025-12-19 01:20:08 +08:00
20 lines
315 B
PHP
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();
|