This commit is contained in:
2019-04-04 11:48:58 +02:00
parent 89499d578c
commit e0ae750c92
+2 -2
View File
@@ -388,12 +388,12 @@ function startServer() {
}); });
app.get('/run-pytron-total', () => { app.get('/run-pytron-total', (req, res) => {
runPythonTotal(); runPythonTotal();
res.send('Received runPythonTotal'); res.send('Received runPythonTotal');
}); });
app.get('/run-pytron', () => { app.get('/run-pytron', (req, res) => {
runPython(); runPython();
res.send('Received runPython (refresh)'); res.send('Received runPython (refresh)');
}); });