transfer_yl/cmd/api/internal/config/config.go

26 lines
337 B
Go
Raw Normal View History

2024-07-16 16:51:39 +08:00
package config
import (
"github.com/zeromicro/go-zero/core/stores/cache"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
Rpc
Cache cache.CacheConf
Sys struct {
PrimaryKey string
Url string
Key string
}
}
type Rpc struct {
Nacos Nacos
}
type Nacos struct {
2024-11-04 14:05:53 +08:00
Endpoints []string
2024-07-16 16:51:39 +08:00
}