forked from Deuxfleurs/garage
24 lines
558 B
HTML
24 lines
558 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Garage Adminstration API v0</title>
|
|
<!-- needed for adaptive design -->
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="./css/redoc.css" rel="stylesheet">
|
|
|
|
<!--
|
|
Redoc doesn't change outer page styles
|
|
-->
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<redoc spec-url='./garage-admin-v0.yml'></redoc>
|
|
<script src="./redoc.standalone.js"> </script>
|
|
</body>
|
|
</html>
|