wewe-rss / apps /server /src /app.service.ts
div-wang's picture
上传文件
95d29a5 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>
`;
}
}