Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 11:29:37.456 <!-- HTML for static distribution bundle build -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Fungenerators API</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Source+Code+Pro:300,600|Titillium+Web:400,600,700" rel="stylesheet">
- <link rel="stylesheet" type="text/css" href="/docs/swagger-ui.css" >
- <link rel="icon" type="image/x-icon" href="/favicon.ico" />
- <script src="/docs/swagger-ui-bundle.js"> </script>
- <script src="/docs/swagger-ui-standalone-preset.js"> </script>
- <style>
- html
- {
- box-sizing: border-box;
- overflow: -moz-scrollbars-vertical;
- overflow-y: scroll;
- }
- *,
- *:before,
- *:after
- {
- box-sizing: inherit;
- }
- body {
- margin:0;
- background: #fafafa;
- }
- .swagger-ui .topbar {
- display: none;
- }
- .download-url-wrapper {
- position: absolute;
- display: none;
- width: 0px;
- height: 0px;
- top: -100px;
- right: -100px;
- }
- #swagger-ui
- {
- margin-bottom: 100px;
- }
- .tso-topbar {
- width: 100%;
- padding: 20px 0;
- background-color: #1b1b1b;
- padding-left: 10%;
- padding-right: 10%;
- min-height: 50px;
- }
- .tso-text-center {
- }
- ul.tso-top-menu {
- list-style-type: none;
- margin: 0;
- padding: 0;
- color: #eee;
- }
- ul.tso-top-menu a {
- text-decoration: none;
- color: #eee;
- }
- .tso-top-menu li {
- float: left;
- }
- .tso-top-menu li a {
- display: block;
- padding-right: 25px;
- }
- </style>
- </head>
- <body>
- <div class="tso-topbar">
- <nav id="tso-top-menu text-center">
- <ul class="tso-top-menu">
- <li><a href="/"><img src="https://fungenerators.com/branding/branding.png" width="35" ></a></li>
- <li><a href="https://fungenerators.com/">Fungenerators</a></li>
- </ul>
- </nav>
- </div>
- <div id="swagger-ui"></div>
- <script>
- window.onload = function() {
- // Build a system
- var yamlurl = "http://api.fungenerators.com/yaml/fungenerators.openapi.yaml?v4";
- if (location.protocol === 'https:') {
- var yamlurl = "https://api.fungenerators.com/yaml/fungenerators.openapi.yaml?v4";
- }
- const ui = SwaggerUIBundle({
- url: yamlurl,
- dom_id: '#swagger-ui',
- //validatorUrl: "",
- supportedSubmitMethods: ['get', 'post', 'put', 'delete', 'patch'],
- presets: [
- SwaggerUIBundle.presets.apis,
- SwaggerUIStandalonePreset
- ],
- plugins: [
- SwaggerUIBundle.plugins.DownloadUrl
- ],
- jsonEditor: false,
- showRequestHeaders: true,
- layout: "StandaloneLayout"
- })
- window.ui = ui
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement