Skip to content

Commit

Permalink
修改examples文件夹名称
Browse files Browse the repository at this point in the history
  • Loading branch information
osgochina committed Jan 10, 2022
1 parent 3a19b94 commit 6e3a1fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/drpc/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ svr := drpc.NewEndpoint(config)
* 如果角色是服务端,则会使用对应的网络类型监听具体的端口或地址。
* 如果角色是客户端,则会使用对应的网络类型链接到服务端。
* 注意,框架已经支持`kcp`,`quic`协议,具体的用法可以参考
* [kcp](https://github.com/osgochina/dmicro/tree/main/.examples/kcp)
* [quic](https://github.com/osgochina/dmicro/tree/main/.examples/quic)
* [kcp](https://github.com/osgochina/dmicro/tree/main/examples/kcp)
* [quic](https://github.com/osgochina/dmicro/tree/main/examples/quic)

#### ListenIP

Expand Down
2 changes: 1 addition & 1 deletion docs/easyservice/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ package main
import (
"fmt"
"github.com/gogf/gf/os/gfile"
"github.com/osgochina/dmicro/.examples/easyservice/sandbox"
"github.com/osgochina/dmicro/examples/easyservice/sandbox"
"github.com/osgochina/dmicro/drpc"
"github.com/osgochina/dmicro/easyservice"
"github.com/osgochina/dmicro/logger"
Expand Down
2 changes: 1 addition & 1 deletion examples/easyservice/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package main
import (
"fmt"
"github.com/gogf/gf/os/gfile"
"github.com/osgochina/dmicro/.examples/easyservice/sandbox"
"github.com/osgochina/dmicro/drpc"
"github.com/osgochina/dmicro/easyservice"
"github.com/osgochina/dmicro/examples/easyservice/sandbox"
"github.com/osgochina/dmicro/logger"
"github.com/osgochina/dmicro/utils"
"github.com/osgochina/dmicro/utils/graceful"
Expand Down

0 comments on commit 6e3a1fc

Please sign in to comment.