fabric-samples/full-stack-asset-transfer-guide/applications/rest-api/src/server.ts
Josh Kneubuhl 4c656f6215 Import Full Stack Asset Transfer Guide at commit fb554befdbbeff9e69159b54fce0b811603f29c7
Signed-off-by: Josh Kneubuhl <jkneubuh@us.ibm.com>
2022-11-09 13:14:04 -05:00

6 lines
139 B
TypeScript

import app from "./app";
const PORT = process.env.PORT || 8080;
app.listen(PORT, () => {
console.log('listening on port ' + PORT);
})