blob: 5d566ee73e8d56aec95979092fd9a89908ad48b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Injectable } from '@nestjs/common';
import { warn } from 'console';
@Injectable()
export class AppService {
getHello(): Object {
return {
id: 10,
text: "Hello This is a TEXT"
};
}
}
|