Files
teamwallet/myteamwallet_backend/src/home/home.service.ts
Bastian Wagner 6bea4f766a first commit
2026-07-31 21:02:47 +02:00

12 lines
268 B
TypeScript

import { Injectable } from '@nestjs/common';
import { ConfigService } from '@nestjs/config';
@Injectable()
export class HomeService {
constructor(private configService: ConfigService) {}
appInfo() {
return { name: this.configService.get('app.name') };
}
}