You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
338 B
15 lines
338 B
app.get('/problem', async (req, res) => { |
|
res.redirect('/problems'); |
|
}); |
|
|
|
app.get('/contest', async (req, res) => { |
|
res.redirect('/contests'); |
|
}); |
|
|
|
app.get('/judge_state', async (req, res) => { |
|
res.redirect('/submissions'); |
|
}); |
|
|
|
app.get('/judge_detail/:id', async (req, res) => { |
|
res.redirect('/submission/' + req.params.id); |
|
});
|
|
|