src/app.service.ts
Methods |
| getHello |
getHello()
|
|
Defined in src/app.service.ts:5
|
|
Returns :
string
|
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}