my-chat-room/apps/api/src/app/app.service.ts

10 lines
211 B
TypeScript
Raw Normal View History

2020-10-09 13:32:53 +00:00
import { Injectable } from '@nestjs/common';
import { Message } from '@chat-room/api-interfaces';
@Injectable()
export class AppService {
getData(): Message {
return { message: 'Welcome to api!' };
}
}