Skip to content

Commit

Permalink
调整文件结构
Browse files Browse the repository at this point in the history
  • Loading branch information
liubiao committed Aug 23, 2018
1 parent c9b1ff4 commit 68cc919
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* 由于JavaScript没有抽象方法,所以我编写了这个IM基类
* 由于JavaScript没有接口的概念,所以我编写了这个IM基类
* 将你自己的IM的实现类继承这个类就可以了
* 我把IM通信的常用方法封装在这里,
* 有些实现了具体细节,但有些没实现,是作为抽象函数,由子类去实现细节,这点是大家需要注意的
Expand Down
2 changes: 1 addition & 1 deletion modules/im-sdk/sdk/web-socket-handler-imp.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import IMHandler from "../i-im-handler";
import IMHandler from "../interface/i-im-handler";

export default class WebSocketHandlerImp extends IMHandler{
constructor() {
Expand Down

0 comments on commit 68cc919

Please sign in to comment.