20 lines
705 B
HTML
20 lines
705 B
HTML
<!-- public/api.html -->
|
||
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8"/>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||
<title>FileRise API Docs</title>
|
||
<script src="https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js" integrity="sha384-4vOjrBu7SuDWXcAw1qFznVLA/sKL+0l4nn+J1HY8w7cpa6twQEYuh4b0Cwuo7CyX" crossorigin="anonymous"></script>
|
||
</head>
|
||
<body>
|
||
<redoc spec-url="openapi.json"></redoc>
|
||
<div id="redoc-container"></div>
|
||
<script>
|
||
// If the <redoc> tag didn’t render, fall back to init()
|
||
if (!customElements.get('redoc')) {
|
||
Redoc.init('openapi.json', {}, document.getElementById('redoc-container'));
|
||
}
|
||
</script>
|
||
</body>
|
||
</html> |