fixes
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
from flask import Flask
|
||||
|
||||
|
||||
def proxy_app():
|
||||
def create_app():
|
||||
app = Flask('proxy')
|
||||
|
||||
from proxy import rss_proxy, healthcheck
|
||||
rss_proxy.init_proxy(app)
|
||||
healthcheck.init_healthcheck(app)
|
||||
return app
|
||||
|
||||
|
||||
proxy_app = create_app()
|
||||
|
||||
Reference in New Issue
Block a user