mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 09:31:20 -04:00
8 lines
259 B
JavaScript
8 lines
259 B
JavaScript
const { httpServer } = require('../globals/http');
|
|
const config = require('../globals/config');
|
|
const logger = require('../globals/logger').child('httpServer');
|
|
|
|
httpServer.listen(config.port, () => {
|
|
logger.info(`Server listening on :${config.port}`);
|
|
});
|