mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-11 00:40:00 +08:00
13 lines
203 B
Go
Executable File
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
|
|
}
|