mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-02 06:33:40 +08:00
10 lines
156 B
JavaScript
10 lines
156 B
JavaScript
|
import ImMessage from "./message";
|
||
|
import ImSession from "./session";
|
||
|
|
||
|
export default {
|
||
|
im: {
|
||
|
message: new ImMessage(),
|
||
|
session: new ImSession()
|
||
|
}
|
||
|
};
|