13 lines
183 B
Go
13 lines
183 B
Go
package config
|
|
|
|
import "github.com/zeromicro/go-zero/zrpc"
|
|
|
|
type Config struct {
|
|
zrpc.RpcServerConf
|
|
AppData []struct {
|
|
AppId string
|
|
AppSecret string
|
|
Type string
|
|
}
|
|
}
|