mancala/src/index.ts

9 lines
239 B
TypeScript
Raw Normal View History

2021-06-27 01:41:52 +03:00
import express, { Request, Response } from "express";
const app = express();
app.get("/", (req: Request, res: Response) => {
res.send("Hello World");
});
app.listen(5000, () => console.log("Server listening on http://localhost:5000"))