- Implement documentation generation - Replace chi router with gin for documentation server - Fix issues with docs command execution
24 lines
575 B
HTML
24 lines
575 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Documentation of OstiweStatus API</title>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script src="https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js"> </script>
|
|
<div id="redoc-container"></div>
|
|
|
|
<script>
|
|
Redoc.init('/static-doc', {
|
|
"showExtensions": true
|
|
}, document.getElementById('redoc-container'))
|
|
</script>
|
|
</body>
|
|
</html> |