Files
iddaai-be/src/app.service.ts
T
2026-04-16 17:21:48 +03:00

9 lines
142 B
TypeScript
Executable File

import { Injectable } from "@nestjs/common";
@Injectable()
export class AppService {
getHello(): string {
return "Hello World!";
}
}