Compare commits

..

No commits in common. "17c4fdb51ed057d56efecebe41eba71215cba855" and "7441f2633df1bccad883b6272229b50f6fa7efd1" have entirely different histories.

3 changed files with 2 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"name": "piston-api",
"version": "3.1.1",
"version": "3.1.0",
"description": "API for piston - a high performance code execution engine",
"main": "src/index.js",
"dependencies": {

View File

@ -163,7 +163,7 @@ router.use((req, res, next) => {
return next();
}
if (!req.headers['content-type']?.startsWith('application/json')) {
if (!req.headers['content-type'].startsWith('application/json')) {
return res.status(415).send({
message: 'requests must be of type application/json',
});

View File

@ -79,12 +79,6 @@ expressWs(app);
const api_v2 = require('./api/v2');
app.use('/api/v2', api_v2);
const { version } = require('../package.json');
app.get('/', (req, res, next) => {
return res.status(200).send({ message: `Piston v${version}` });
});
app.use((req, res, next) => {
return res.status(404).send({ message: 'Not Found' });
});