aboutsummaryrefslogtreecommitdiff
path: root/core-rest/src/main/resources/swagger-ui-dist/index.js
diff options
context:
space:
mode:
authorKseniya Tomskikh <ktomskikh@driver.xyz>2018-10-17 17:02:58 +0800
committerKseniya Tomskikh <ktomskikh@driver.xyz>2018-10-17 17:02:58 +0800
commit95c3aeecd7e6ad04ce8d216c09e779f5ca38aa6a (patch)
treedfc94f20d00c84f9dde120f065bfc9298bdff0dc /core-rest/src/main/resources/swagger-ui-dist/index.js
parentf5d0b038457ed9d01687f0949e22e08a6b116066 (diff)
parenta43556851bf986b81351fc9f1ae5ba51bf21dc47 (diff)
downloaddriver-core-95c3aeecd7e6ad04ce8d216c09e779f5ca38aa6a.tar.gz
driver-core-95c3aeecd7e6ad04ce8d216c09e779f5ca38aa6a.tar.bz2
driver-core-95c3aeecd7e6ad04ce8d216c09e779f5ca38aa6a.zip
Merge branch 'master' into kseniya/typized-idkseniya/typized-id
Diffstat (limited to 'core-rest/src/main/resources/swagger-ui-dist/index.js')
-rw-r--r--core-rest/src/main/resources/swagger-ui-dist/index.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/core-rest/src/main/resources/swagger-ui-dist/index.js b/core-rest/src/main/resources/swagger-ui-dist/index.js
new file mode 100644
index 0000000..c229ec4
--- /dev/null
+++ b/core-rest/src/main/resources/swagger-ui-dist/index.js
@@ -0,0 +1,17 @@
+try {
+ module.exports.SwaggerUIBundle = require("./swagger-ui-bundle.js")
+ module.exports.SwaggerUIStandalonePreset = require("./swagger-ui-standalone-preset.js")
+} catch(e) {
+ // swallow the error if there's a problem loading the assets.
+ // allows this module to support providing the assets for browserish contexts,
+ // without exploding in a Node context.
+ //
+ // see https://github.com/swagger-api/swagger-ui/issues/3291#issuecomment-311195388
+ // for more information.
+}
+
+// `absolutePath` and `getAbsoluteFSPath` are both here because at one point,
+// we documented having one and actually implemented the other.
+// They were both retained so we don't break anyone's code.
+module.exports.absolutePath = require("./absolute-path.js")
+module.exports.getAbsoluteFSPath = require("./absolute-path.js")