first commit

This commit is contained in:
salvacybersec
2025-11-13 03:25:21 +03:00
commit abe170a1f8
21 changed files with 2198 additions and 0 deletions

9
app.py Normal file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env python3
"""
Flask Web Server - RSS-Bridge benzeri URL template sistemi
"""
from src.web_server import app
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=False)