1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-02-03 23:10:01 +00:00

13 lines
300 B
PHP

<?php
call_user_func(function () { // to prevent variable scope leak
Route::group(
[
'domain' => UOJConfig::$data['web']['main']['host'],
],
function () {
Route::post("/api/remote_judge/custom_account_validator", '/subdomain/api/remote_judge/custom_account_validator.php');
}
);
});