wewe-rss / apps /server /src /app.service.ts
Elkins's picture
Upload 97 files
d193c91 verified
raw
history blame contribute delete
413 Bytes
import { Injectable } from '@nestjs/common';
import { ConfigService } from '@nestjs/config';
@Injectable()
export class AppService {
constructor(private readonly configService: ConfigService) {}
getHello(): string {
return `
<div style="display:flex;justify-content: center;height: 100%;align-items: center;font-size: 30px;">
<div>>> <a href="/dash">WeWe RSS</a> <<</div>
</div>
`;
}
}