This commit is contained in:
Thomas Forgione 2019-04-04 11:48:58 +02:00
parent 89499d578c
commit e0ae750c92
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 2 additions and 2 deletions

View File

@ -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)');
});