2015-10-03 11:54:09 +03:00
|
|
|
<!-- index.html -->
|
|
|
|
<html>
|
|
|
|
<head>
|
2015-10-03 12:57:37 +03:00
|
|
|
<title>ReDoc prototype</title>
|
2015-10-10 15:34:46 +03:00
|
|
|
<link rel="stylesheet" href="main.css">
|
2015-10-03 11:54:09 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
2015-10-15 20:06:33 +03:00
|
|
|
<side-menu>
|
|
|
|
</side-menu>
|
2015-10-09 23:19:35 +03:00
|
|
|
<!-- The wrapper component -->
|
2015-10-07 12:47:57 +03:00
|
|
|
<redoc>
|
2015-10-03 11:54:09 +03:00
|
|
|
Loading...
|
2015-10-07 12:47:57 +03:00
|
|
|
</redoc>
|
2015-10-03 11:54:09 +03:00
|
|
|
|
|
|
|
<!-- ReDoc built file with all dependencies included -->
|
|
|
|
<script src="dist/redoc.full.js"> </script>
|
|
|
|
<script>
|
2015-10-09 23:19:35 +03:00
|
|
|
/* init redoc */
|
2015-10-11 21:32:40 +03:00
|
|
|
Redoc.init('swagger.json');
|
2015-10-03 11:54:09 +03:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|