Files
go-zero/example/shorturl/rpc/transform/internal/config/config.go
2020-09-18 11:41:52 +08:00

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/zrpc"
)
type Config struct {
zrpc.RpcServerConf
DataSource string
Table string
Cache cache.CacheConf
}