1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-01-30 21:00:05 +00:00

6 lines
140 B
PHP
Raw Normal View History

2016-07-19 00:39:37 +08:00
<?php
require_once 'vendor/autoload.php';
spl_autoload_register(function ($class) {
require_once strtr($class, '\\_', '//').'.php';
});