fibable/index.php

11 lines
147 B
PHP
Raw Normal View History

2023-09-04 21:13:29 +02:00
<?php
spl_autoload_register(
function ($class_name) {
require_once "lib/$class_name.php";
}
);
$blog = new Blog();
$blog->run();