This repository has been archived on 2024-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
2021-03-18 10:04:32 +00:00
|
|
|
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, () => {
|
2021-03-18 10:38:05 +00:00
|
|
|
console.log(`Example app listening at http://localhost:${port}`);
|
2021-03-18 10:04:32 +00:00
|
|
|
});
|