node-pt / src /app.service.ts
Abdul Rehman
first commit
ae1ae66
raw
history blame
142 Bytes
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}