summaryrefslogtreecommitdiff
path: root/server/app.service.ts
blob: 927d7cca0badb13577152bf8753ce3552358f53b (plain)
1
2
3
4
5
6
7
8
import { Injectable } from '@nestjs/common';

@Injectable()
export class AppService {
  getHello(): string {
    return 'Hello World!';
  }
}