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();
|
||||
res.send('Received runPythonTotal');
|
||||
});
|
||||
|
||||
app.get('/run-pytron', () => {
|
||||
app.get('/run-pytron', (req, res) => {
|
||||
runPython();
|
||||
res.send('Received runPython (refresh)');
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue