Files
go-zero/example/bookstore/rpc/check/internal/config/config.go
songmeizi b060867009 Feature bookstore update (#253)
* update bookstore

* update bookstore
2020-12-08 22:36:48 +08:00

13 lines
203 B
Go
Executable File

package config
import (
"github.com/tal-tech/go-zero/core/stores/cache"
"github.com/tal-tech/go-zero/zrpc"
)
type Config struct {
zrpc.RpcServerConf
DataSource string
Cache cache.CacheConf
}