2016-01-15 23:34:28 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2016-01-17 14:51:21 +03:00
|
|
|
<meta charset="UTF-8">
|
2016-01-15 23:34:28 +03:00
|
|
|
<title>ReDoc</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2016-01-17 14:51:21 +03:00
|
|
|
<redoc>
|
2016-01-15 23:34:28 +03:00
|
|
|
Loading...
|
|
|
|
</redoc>
|
|
|
|
|
|
|
|
<!-- ReDoc built file with all dependencies included -->
|
|
|
|
<script src="dist/redoc.full.min.js"> </script>
|
|
|
|
<script>
|
2016-01-17 14:51:21 +03:00
|
|
|
window.redocError = null;
|
2016-01-15 23:34:28 +03:00
|
|
|
/* init redoc */
|
|
|
|
var url = window.location.search.substr(5) || 'swagger.json';
|
2016-01-17 14:51:21 +03:00
|
|
|
Redoc.init(decodeURIComponent(url)).then(function() {}, function(err) {
|
|
|
|
window.redocError = err;
|
|
|
|
});
|
2016-01-15 23:34:28 +03:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|