-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.html
26 lines (26 loc) · 1008 Bytes
/
index.html
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
<!-- HTML for static distribution bundle build -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Swagger UI</title>
<link rel="stylesheet" type="text/css" href="./dist/swagger-ui.css" />
<link rel="stylesheet" type="text/css" href="./dist/index.css" />
<link rel="icon" type="image/png" href="./dist/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./dist/favicon-16x16.png" sizes="16x16" />
</head>
<body>
<div id="swagger-ui"></div>
<script src="./dist/swagger-ui-bundle.js" charset="UTF-8"> </script>
<script src="./dist/swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
<script src="./dist/swagger-initializer.js" charset="UTF-8"> </script>
<script>
window.onload = () => {
window.ui = SwaggerUIBundle({
url: 'https://binance.github.io/binance-api-swagger/spot_api.yaml',
dom_id: '#swagger-ui',
});
};
</script>
</body>
</html>