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

23 lines
352 B
Go
Raw Normal View History

2024-08-28 09:09:01 +00:00
package config
2024-08-29 01:08:15 +00:00
import (
"github.com/zeromicro/go-zero/core/stores/cache"
"github.com/zeromicro/go-zero/zrpc"
)
2024-08-28 09:09:01 +00:00
type Config struct {
zrpc.RpcServerConf
2024-08-29 01:08:15 +00:00
Mongo struct {
Schema string
User string
Password string
Host string
Port string
Database string
Collection string
}
// 快取
Cache cache.CacheConf
2024-08-28 09:09:01 +00:00
}