app-cloudep-tweeting-service/internal/config/config.go

16 lines
230 B
Go
Raw Normal View History

2024-08-28 09:09:01 +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-08-28 09:09:01 +00:00
}