14 lines
222 B
Go
Executable File
14 lines
222 B
Go
Executable File
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
|
|
}
|