dashboard
repositories
filestore
activity
search
login
刘苏义
/
ruoyi-api
forked from
ard/ruoyi-api
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
1. 增加获取和设置PTZ接口 2. 增加相机抓图和录像接口 3. 增加设置零方位角接口 4. 增加在线状态检测接口 5. 增加云台控制接口
‘liusuyi’
2023-10-16
7265b3d4b666f3a59f69c6dbc556098475041a27
[~liusuyi/ruoyi-api.git]
/
ruoyi-ui
/
node_modules
/
sockjs-client
/
node_modules
/
debug
/
src
/
index.js
1
2
3
4
5
6
7
8
9
10
11
"use strict";
/**
* Detect Electron renderer / nwjs process, which is node, but we should
* treat as a browser.
*/
if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) {
module.exports = require('./browser.js');
} else {
module.exports = require('./node.js');
}