12345678910111213141516 |
- import {
- user
- } from './../proto/bundle.js';
- //不需要token的请求
- const NoTokenServants = [10003,10005]
- const ProtoConfig = {
- 10003: user.registerReq,//注册请求
- 10004: user.registerRsp,//注册返回
- 10005: user.loginReq, // 登录请求
- 10006: user.loginRsp, // 登录返回
-
- };
- module.exports = {ProtoConfig,NoTokenServants};
|