mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-02-28 21:20:28 +00:00
9 lines
142 B
TypeScript
9 lines
142 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
|
|
@Injectable()
|
|
export class AppService {
|
|
getHello(): string {
|
|
return 'Hello World!';
|
|
}
|
|
}
|