from flask import Flask from .config import Config app = Flask(__name__) app.config.from_object(Config) from proxy import rss_proxy, healthcheck