mirror of
https://github.com/immich-app/immich.git
synced 2026-02-04 08:49:01 +03: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!';
|
|
}
|
|
}
|