mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-11 02:48:42 +00:00
6 lines
140 B
PHP
6 lines
140 B
PHP
|
<?php
|
||
|
require_once 'vendor/autoload.php';
|
||
|
spl_autoload_register(function ($class) {
|
||
|
require_once strtr($class, '\\_', '//').'.php';
|
||
|
});
|