Files
im-system/uni-im示例/uni_modules/uni-open-bridge/uniCloud/cloudfunctions/uni-open-bridge/consts.js
2023-09-24 17:55:19 +08:00

20 lines
277 B
JavaScript

'use strict';
const HTTP_STATUS = {
SUCCESS: 200
}
const PlatformType = {
MP_WEIXIN: 'mp-weixin',
H5_WEIXIN: 'h5-weixin',
APP_WEIXIN: 'app-weixin',
WEB_WEIXIN: 'web-weixin',
MP_QQ: 'mp-qq',
APP_QQ: 'app-qq'
}
module.exports = {
HTTP_STATUS,
PlatformType
}