forked from zeta-chain/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.html
More file actions
34 lines (33 loc) · 925 Bytes
/
openapi.html
File metadata and controls
34 lines (33 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link
rel="stylesheet"
type="text/css"
href="https://cdn.jsdelivr.net/npm/[email protected]/swagger-ui.min.css"
/>
<link
rel="icon"
type="image/png"
href="https://cdn.jsdelivr.net/npm/[email protected]/favicon-16x16.png"
/>
</head>
<body>
<div id="swagger-ui"></div>
<script>
window.onload = function() {
window.ui = SwaggerUIBundle({
url: "./openapi.swagger.yaml",
dom_id: "#swagger-ui",
deepLinking: true,
layout: "BaseLayout",
showExtensions: true,
showCommonExtensions: true,
defaultModelExpandDepth: 5
});
}
</script>
</body>
</html>