1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-02-15 17:16:40 +00:00
2017-04-07 11:15:39 +08:00

6 lines
140 B
PHP

<?php
require_once 'vendor/autoload.php';
spl_autoload_register(function ($class) {
require_once strtr($class, '\\_', '//').'.php';
});