Initial commit

This commit is contained in:
2025-03-03 01:16:50 +03:00
parent be888d68b2
commit 2bef3a7fe4
11 changed files with 175 additions and 0 deletions

7
proxy/__init__.py Executable file
View File

@@ -0,0 +1,7 @@
from flask import Flask
from .config import Config
app = Flask(__name__)
app.config.from_object(Config)
from proxy import rss_proxy, healthcheck