13 lines
183 B
Go
Raw Normal View History

2025-02-05 18:45:49 +08:00
package config
import "github.com/zeromicro/go-zero/zrpc"
type Config struct {
zrpc.RpcServerConf
2025-02-06 15:35:23 +08:00
AppData []struct {
AppId string
AppSecret string
Type string
}
2025-02-05 18:45:49 +08:00
}