app-cloudep-order-server/internal/config/config.go

17 lines
231 B
Go
Raw Permalink Normal View History

2024-10-06 07:02:30 +00:00
package config
import "github.com/zeromicro/go-zero/zrpc"
type Config struct {
zrpc.RpcServerConf
Mongo struct {
Schema string
User string
Password string
Host string
Port string
Database string
}
2024-10-06 07:02:30 +00:00
}