mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-14 02:10:00 +08:00
14 lines
222 B
Go
14 lines
222 B
Go
|
|
package config
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/tal-tech/go-zero/core/stores/cache"
|
||
|
|
"github.com/tal-tech/go-zero/rpcx"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Config struct {
|
||
|
|
rpcx.RpcServerConf
|
||
|
|
DataSource string
|
||
|
|
Table string
|
||
|
|
Cache cache.CacheConf
|
||
|
|
}
|