Skip to content

Commit 2a6bb0a

Browse files
whitspace fix
1 parent dd93cb0 commit 2a6bb0a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/WebConnector.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ class WebConnector {
1111
}
1212

1313
setupExpressRoutes() {
14-
this.express.post('/exit', (req, res) => {
15-
res.sendStatus(200);
16-
process.exit(1);
17-
});
14+
this.express.post('/exit', (req, res) => {
15+
res.sendStatus(200);
16+
process.exit(1);
17+
});
1818
this.express.get('/', (req, res) => {
1919
var output = {};
2020
Object.entries(this.devices).forEach(([id, device]) => output[id] = device.getState());

0 commit comments

Comments
 (0)