Fix bug
This commit is contained in:
parent
89499d578c
commit
e0ae750c92
|
@ -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)');
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue