node-pt / src /app.service.ts
bardd's picture
first commit
7b850b7
raw
history blame
150 Bytes
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}