mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-16 04:25:34 +00:00
15 lines
278 B
TypeScript
15 lines
278 B
TypeScript
/*
|
|
* Generic webserver instance for the examples
|
|
* @Author Alexander P. Cerutti
|
|
* Requires express to run
|
|
*/
|
|
|
|
import express from "express";
|
|
export const app = express();
|
|
|
|
app.use(express.json());
|
|
|
|
app.listen(8080, "0.0.0.0", () => {
|
|
console.log("Webserver started.");
|
|
});
|