26 lines
332 B
Go
26 lines
332 B
Go
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 {
|
|
Target string
|
|
}
|