ProtoConfig.js 345 B

12345678910111213141516
  1. import {
  2. user
  3. } from './../proto/bundle.js';
  4. //不需要token的请求
  5. const NoTokenServants = [10003,10005]
  6. const ProtoConfig = {
  7. 10003: user.registerReq,//注册请求
  8. 10004: user.registerRsp,//注册返回
  9. 10005: user.loginReq, // 登录请求
  10. 10006: user.loginRsp, // 登录返回
  11. };
  12. module.exports = {ProtoConfig,NoTokenServants};