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.
smart-tag/server.js

15 lines
414 B
JavaScript
Raw Normal View History

2021-03-18 10:04:32 +00:00
const express = require('express');
const app = express();
const port = 9999;
2021-03-18 12:56:34 +00:00
const logIn = require('./methods/logIn');
const dataLogIn = logIn.info;
exports.dataLogIn = dataLogIn;
2021-03-18 10:04:32 +00:00
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
});