move home route into web diretory
This commit is contained in:
@@ -33,11 +33,6 @@ class ProxyState:
|
||||
app = Quart(__name__)
|
||||
|
||||
|
||||
@app.route('/')
|
||||
async def hello():
|
||||
return Response(response="Hello, world")
|
||||
|
||||
|
||||
@app.route('/-/ready')
|
||||
async def ready():
|
||||
if ProxyState.is_up():
|
||||
|
||||
8
app/src/web/route.py
Normal file
8
app/src/web/route.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from quart import Response
|
||||
|
||||
from server import app
|
||||
|
||||
|
||||
@app.route('/')
|
||||
async def hello():
|
||||
return Response(response="Hello, world")
|
||||
Reference in New Issue
Block a user