dcb-service-core-api/src/modules/auth/auth.controller.ts
Mamadou Khoussa [028918 DSI/DAC/DIF/DS] df7ae8dbeb firts commit
2025-10-22 03:03:37 +00:00

10 lines
179 B
TypeScript

import { Controller, Get } from "@nestjs/common";
//todo
@Controller()
export class AuthController{
@Get()
getHello(): string {
return 'Hello World!';
}
}