27 lines
754 B
HTML
27 lines
754 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>API Documentation</title>
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
href="https://unpkg.com/swagger-ui-dist@5.0.0/swagger-ui.css"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div id="swagger-ui"></div>
|
|
<script src="https://unpkg.com/swagger-ui-dist@5.0.0/swagger-ui-bundle.js"></script>
|
|
<script src="https://unpkg.com/swagger-ui-dist@5.0.0/swagger-ui-standalone-preset.js"></script>
|
|
<script>
|
|
window.onload = function () {
|
|
SwaggerUIBundle({
|
|
url: "./swagger-spec.json",
|
|
dom_id: "#swagger-ui",
|
|
presets: [SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset],
|
|
layout: "StandaloneLayout",
|
|
});
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|