create LRT module frame

This commit is contained in:
Jurgis Sakalauskas
2022-12-06 19:36:10 +02:00
parent d20295326f
commit 8c9190675b
12 changed files with 243 additions and 4 deletions
+8
View File
@@ -0,0 +1,8 @@
import { Injectable } from '@nestjs/common';
@Injectable()
export class LrtService {
getMainMenu(): string {
return 'Hello World!';
}
}