felicity-lims/backend/felicity_lims/felicity/views/__init__.py

21 lines
609 B
Python
Raw Normal View History

2022-01-19 08:40:02 +08:00
from fastapi import FastAPI
from starlette.responses import HTMLResponse
def default_home_page(app: FastAPI):
@app.get("/", response_class=HTMLResponse)
def index():
return """
<!Doctype html>
<html>
<body>
<h1>SecureAPI</h1>
<div class="btn-group">
<a href="/docs"><button>SwaggerUI</button></a>
<a href="/redoc"><button>Redoc</button></a>
<a href="/felicity-test_gql"><button>Felicity GraphQL</button></a>
2022-01-19 08:40:02 +08:00
</div>
</body>
</html>
"""