14 lines
260 B
Go
Raw Normal View History

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"`
}