forked from whimet/confluence-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger-ui.html
42 lines (34 loc) · 959 Bytes
/
swagger-ui.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="favicon.ico">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-114996686-1"></script>
<script type="text/javascript" src="./js/google-analytics.js?version=2022.01"></script>
<script type="text/javascript" src="https://connect-cdn.atl-paas.net/all.js"></script>
<title>Swagger UI</title>
<style>
html {
box-sizing: border-box;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
margin: 0;
background: #fafafa;
}
</style>
</head>
<body>
<div id="app"></div>
</body>
<script type="module" src="src/swagger-ui.ts"></script>
</html>