File size: 240 Bytes
2c16c8c | 1 2 3 4 5 6 7 8 9 10 | // src/modules/user/user.controller.ts
import { Request, Response } from "express";
import { UserService } from "./user.service";
export class UserController {
constructor(
private readonly userService: UserService
) {}
}
|