apps/auth/src/app/app.service.ts
Methods |
getData |
getData()
|
Defined in apps/auth/src/app/app.service.ts:5
|
Returns :
literal type
|
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getData(): { message: string } {
return { message: 'Hello Auth Module' };
}
}