You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
392 B
15 lines
392 B
// 引入其他模块的接口
|
|
|
|
import msgApi from '@/api/message.js'; // 消息
|
|
import LoginApi from '@/api/login.js'; //登录相关
|
|
import friendApi from '@/api/friend.js'; //登录相关
|
|
import emojiApi from '@/api/emoji.js'; //登录相关
|
|
import compaApi from '@/api/compass.js'; //朋友圈
|
|
// 导出接口
|
|
export default {
|
|
msgApi,
|
|
LoginApi,
|
|
friendApi,
|
|
emojiApi,
|
|
compaApi
|
|
}
|
|
|