mirror of
https://github.com/docmost/docmost.git
synced 2025-11-14 16:01:09 +10: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!';
|
|
}
|
|
}
|