-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
29 lines (26 loc) · 1.74 KB
/
index.php
File metadata and controls
29 lines (26 loc) · 1.74 KB
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
<?php
/*
*
* █████╗ ███████╗████████╗██╗ ██╗███████╗██████╗ ██████╗ ██╗ ██╗██████╗
* ██╔══██╗██╔════╝╚══██╔══╝██║ ██║██╔════╝██╔══██╗ ██╔══██╗██║ ██║██╔══██╗
* ███████║█████╗ ██║ ███████║█████╗ ██████╔╝ █████╗ ██████╔╝███████║██████╔╝
* ██╔══██║██╔══╝ ██║ ██╔══██║██╔══╝ ██╔══██╗ ╚════╝ ██╔═══╝ ██╔══██║██╔═══╝
* ██║ ██║███████╗ ██║ ██║ ██║███████╗██║ ██║ ██║ ██║ ██║██║
* ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝
*
* The divine lightweight PHP framework
* < 1 Mo • Zero dependencies • Pure PHP 8.3+
*
* Built from scratch. No bloat. OOP Embedded.
*
* @author: dawnl3ss (Alex') ©2026 — All rights reserved
* Source available • Commercial license required for redistribution
* → https://github.com/dawnl3ss/Aether-PHP
*
*/
declare(strict_types=1);
# - Autoload
require_once __DIR__ . '/autoload.php';
# - Core Init
$app = new \Aether\Aether();
$app->_run();