mirror of
https://github.com/GithubOrgProjectPiza/server.git
synced 2026-09-04 08:36:10 +02:00
6 lines
183 B
TypeScript
6 lines
183 B
TypeScript
import { Request, Response } from "express";
|
|
|
|
export function sayHello(request: Request, response: Response) {
|
|
console.log(request.params);
|
|
response.send(request.params.id);
|
|
} |