import { Injectable } from '@nestjs/common'; import { ConfigService } from '@nestjs/config'; import { ConfigurationType } from './configuration'; @Injectable() export class AppService { constructor(private readonly configService: ConfigService) {} getHello(): string { return `
>> WeWe RSS <<
`; } getFeedConfig() { return this.configService.get('feed')!; } }