Files
plugin-rpc/README.md
dabenxiong 4e25b5b74a feat(增加readme): 增加readme
增加readme
2024-04-01 16:23:02 +08:00

33 lines
385 B
Markdown

# plugin-m7sRpc
让M7s支持rpc和grpc调用
## 插件地址
https://github.com/bigbeer1/m7sRpc
## 插件引入
```go
import (
_ "github.com/bigbeer1/m7sRpc"
)
```
## 配置
```yaml
m7srpc:
name: m7s.rpc
listenon: 0.0.0.0:8810
timeout: 30000
```
```go
type M7sRpcConfig struct {
Name string
ListenOn string
Timeout int64 `json:",default=2000"`
}
```