12 lines
310 B
JavaScript
12 lines
310 B
JavaScript
|
const express = require('express');
|
||
|
const app = express();
|
||
|
const port = 9999;
|
||
|
|
||
|
app.use('/bindShelving', require('./methods/bindShelvingTag'));
|
||
|
app.use('/insertTicket', require('./methods/bindTicketShelving'));
|
||
|
|
||
|
|
||
|
app.listen(port, () => {
|
||
|
console.log(`Example app listening at http://localhost:${port}`)
|
||
|
});
|