Commit 67780e69 authored by nagayama15's avatar nagayama15

Add simplest response

parent e5726bfa
......@@ -7,3 +7,7 @@ const app = express();
const server = app.listen(port, () => {
console.log(`server listening at port ${port}`);
});
app.get("/", (req: express.Request, res: express.Response) => {
res.send("Hello, world!");
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment