14 lines
260 B
Go
14 lines
260 B
Go
package config
|
|
|
|
import (
|
|
"github.com/zeromicro/go-zero/core/stores/cache"
|
|
"github.com/zeromicro/go-zero/zrpc"
|
|
)
|
|
|
|
type Config struct {
|
|
zrpc.RpcServerConf
|
|
DataSource string
|
|
Cache cache.CacheConf
|
|
PrometheusAddr string `json:",default=:9095"`
|
|
}
|