mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
|
|
@Injectable()
|
|
export class AppService {
|
|
getHello(): string {
|
|
console.log('Hello World 123');
|
|
return 'Hello World!';
|
|
}
|
|
}
|