-
Notifications
You must be signed in to change notification settings - Fork 9
/
owo
33 lines (28 loc) · 1.08 KB
/
owo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env php
<?php
/*
* _____ _ __ _____ _____ _ _____ _____
* / _ \ | | / / / _ \ | _ \ | | / _ \ / ___|
* | | | | | | __ / / | | | | | |_| | | | | | | | | |
* | | | | | | / | / / | | | | | _ { | | | | | | | | _
* | |_| | | |/ |/ / | |_| | | |_| | | |___ | |_| | | |_| |
* \_____/ |___/|___/ \_____/ |_____/ |_____| \_____/ \_____/
*
* Copyright (c) 2023 by OwOTeam-DGMT (OwOBlog).
* @Author : HanskiJay
* @Date : 2023-02-14 18:01:56
* @LastEditors : HanskiJay
* @LastEditTime : 2023-02-20 21:40:43
* @E-Mail : [email protected]
* @Telegram : https://t.me/HanskiJay
* @GitHub : https://github.com/Tommy131
*/
declare(strict_types=1);
require_once(__DIR__ . '/src/script/bootstrap.php');
require_once(__DIR__ . '/src/script/systemFunctions.php');
require_once(__DIR__ . '/src/script/httpFunctions.php');
use owoframe\System;
use owoframe\console\Console;
System::init();
System::initializeApplications();
Console::getInstance()->init()->monitor($argv);