1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2026-07-04 18:45:41 +00:00

add swagger-ui css/js files

This commit is contained in:
catborise 2022-08-24 15:14:14 +03:00
parent 46514d0897
commit aeee56fe45
65 changed files with 11671 additions and 0 deletions

View file

@ -0,0 +1,14 @@
/*
* getAbsoluteFSPath
* @return {string} When run in NodeJS env, returns the absolute path to the current directory
* When run outside of NodeJS, will return an error message
*/
const getAbsoluteFSPath = function () {
// detect whether we are running in a browser or nodejs
if (typeof module !== "undefined" && module.exports) {
return require("path").resolve(__dirname)
}
throw new Error('getAbsoluteFSPath can only be called within a Nodejs environment');
}
module.exports = getAbsoluteFSPath