13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
|
|
@Injectable()
|
|
export class AppService {
|
|
/**
|
|
* 查询 当前模块数据。
|
|
* @returns 当前模块查询结果。
|
|
*/
|
|
getHello(): string {
|
|
return 'Hello World!';
|
|
}
|
|
}
|